RadRails 3 is looking nice

TextMate had better start waking up.

Posted via web from Structurally Sound Treehouse

Posted at on 11/18/09 by | 0 comments | Filed under:

control-r for bash interactive search

Searching the Command History

One of the greatest features of the bash shell is command history, which makes it easy to navigate through past commands by navigating up and down through your history with the up and down arrow keys. This is fine if the command you want to repeat is within the last 10–20 commands you executed, but it becomes tedious when the command is 75–100 commands back in your history.

To speed things up, you can search interactively through your command history by pressing Ctrl-R. After doing this, your prompt changes to:

(reverse-i-search)`':  


Start typing a few letters of the command you're looking for, and bash shows you the most recent command that contains the string you've typed so far. What you type is shown between the ` and ' in the prompt. In the example below, I typed in htt:

(reverse-i-search)`htt': rpm -ql $(rpm -qa | grep httpd)  


This shows that the most recent command I typed containing the string htt is:

rpm -ql $(rpm -qa | grep httpd)  


To execute that command again, I can press Enter. If I want to edit it, I can press the left or right arrow key. This places the command on the command line at a normal prompt, and I now can edit it as if I just typed it in. This can be a real time saver for commands with a lot of arguments that are far back in the command history.

 

Posted via web from Structurally Sound Treehouse

Posted at on 11/12/09 by | 0 comments | Filed under:

Amazing Latte Art

Follow the link for more.

Posted via web from Structurally Sound Treehouse

Posted at on 11/11/09 by | 0 comments | Filed under: