Tagged Questions
1
vote
2answers
3k views
How do I change the colors displayed in cygwin rxvt?
When I use "[\e[34m]sometext" i get sometext in blue, but can I specify the shade of blue somewhere?
0
votes
1answer
43 views
MRXVT bash script to change tab title
I am not exactly a pro at BASH Scripting, but I can get by with the basics. I use MRXVT with Cygwin on my windows box (MRXVT is an RXVT Terminal with tabs. RXVT is a Standard Cygwin terminal, but with ...
0
votes
1answer
45 views
How do I enable history to record a here-document and its input?
When I use the command line I can recall history by using C-P or up arrow. However this does not work when trying to recall input to a here-document.
# cat <<!
> a
> b
> c
> !
a
b
c
...