vote up 64 vote down star
99

We all know how to use <ctrl>-R to reverse search through history, but did you know you can use <ctrl>-S to forward search if you set stty stop ""? Also, have you ever tried running bind -p to see all of your keyboard shortcuts listed? There are over 455 on Mac OS X by default.

What is your single most favorite obscure trick, keyboard shortcut or shopt configuration using bash?

flag
1  
Please reword this to say "What is your single most favourite". This allows people to up-vote specific answers, almost like a poll. – SCdF Sep 16 '08 at 1:08
show 4 more comments

87 Answers

prev 1 2 3
vote up 1 vote down

ctrl+L will usually clear the screen. Works from the bash prompt (obviously) and in gdb, and a lot of other prompts.

link|flag
vote up 1 vote down

I have various typo corrections in aliases

alias mkae=make

alias mroe=less

link|flag
show 2 more comments
vote up 0 vote down

I prefer reading man pages in vi, so I have the following in my .profile or .bashrc file

man () { sought=$* /usr/bin/man $sought | col -b | vim -R -c "set nonumber" -c "set syntax=man" - }

link|flag
show 1 more comment
vote up 1 vote down

export LESS="-X" prevents less (less is more) from clearing the screen at the end of a file.

link|flag
vote up 7 vote down

Using 'set -o vi' from the command line, or better, in .bashrc, puts you in vi editing mode on the command line. You start in 'insert' mode so you can type and backspace as normal, but if you make a 'large' mistake you can hit the esc key and then use 'b' and 'f' to move around as you do in vi. cw to change a word. Particularly useful after you've brought up a history command that you want to change.

link|flag
vote up 6 vote down

pushd and popd almost always come in handy

link|flag
vote up 56 vote down

Renaming/moving files with suffixes quickly:
cp /home/foo/realllylongname.cpp{,-old}

This expands to:
cp /home/foo/realllylongname.cpp /home/foo/realllylongname.cpp-old

link|flag
show 1 more comment
vote up 0 vote down

I've always liked this one. Add this to your /etc/inputrc or ~/.inputrc

"\e[A":history-search-backward "\e[B":history-search-forward

When you type "ls " it will be replaced with the last command starting with "ls " or whatever else you put in.

link|flag
vote up 11 vote down

^R reverse search. Hit ^R, type a fragment of a previous command you want to match, and hit ^R until you find the one you want. Then I don't have to remember recently used commands that are still in my history. Not exclusively bash, but also: ^E for end of line, ^A for beginning of line, ^U and ^K to delete before and after the cursor, respectively.

link|flag
1  
I can never remember ^U for some reason. Isn't there a word delete delete shortcut too? – hoyhoy Sep 16 '08 at 1:36
show 2 more comments
vote up 1 vote down

And this one is key for me actually:

set -o vi

/Allan

link|flag
vote up 6 vote down
$ touch {1,2}.txt
$ ls [12].txt
1.txt  2.txt
$ rm !:1
rm [12].txt
$ history | tail -10
...
10007  touch {1,2}.txt
...
$ !10007
touch {1,2}.txt
$ for f in *.txt; do mv $f ${f/txt/doc}; done
link|flag
vote up 31 vote down

I'm a fan of the !$, !^ and !* expandos, returning, from the most recent submitted command line: the last item, first non-command item, and all non-command items. To wit (Note that the shell prints out the command first):

$ echo foo bar baz
foo bar baz
$ echo bang-dollar: !$ bang-hat: !^ bang-star: !*
echo bang-dollar: baz bang-hat: foo bang-star: foo bar baz
bang-dollar: baz bang-hat: foo bang-star: foo bar baz

This comes in handy when you, say ls filea fileb, and want to edit one of them: vi !$ or both of them: vimdiff !*. It can also be generalized to "the nth argument" like so:

$ echo foo bar baz
$ echo !:2
echo bar
bar

Finally, with pathnames, you can get at parts of the path by appending :h and :t to any of the above expandos:

$ ls /usr/bin/id
/usr/bin/id
$ echo Head: !$:h  Tail: !$:t
echo Head: /usr/bin Tail: id
Head: /usr/bin Tail: id
link|flag
show 2 more comments
vote up 1 vote down

As an extension to CTRL-r to search backwards, you can auto-complete your current input with your history if you bind 'history-search-backward'. I typically bind it to the same key that it is in tcsh: ESC-p. You can do this by putting the following line in your .inputrc file:

"\M-p": history-search-backward

E.g. if you have previously executed 'make some_really_painfully_long_target' you can type:

> make <ESC p>

and it will give you

> make some_really_painfully_long_target

link|flag
vote up 9 vote down

Here's a couple of configuration tweaks:

~/.inputrc:

"\C-[[A": history-search-backward
"\C-[[B": history-search-forward

This works the same as ^R but using the arrow keys instead. This means I can type (e.g.) cd /media/ then hit up-arrow to go to the last thing I cd'd to inside the /media/ folder.

(I use Gnome Terminal, you may need to change the escape codes for other terminal emulators.)

Bash completion is also incredibly useful, but it's a far more subtle addition. In ~/.bashrc:

if [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
fi

This will enable per-program tab-completion (e.g. attempting tab completion when the command line starts with evince will only show files that evince can open, and it will also tab-complete command line options).

Works nicely with this also in ~/.inputrc:

set completion-ignore-case on
set show-all-if-ambiguous on
set show-all-if-unmodified on
link|flag
vote up 7 vote down

I like to construct commands with echo and pipe them to the shell:

$ find dir -name \*~ | xargs echo rm
...
$ find dir -name \*~ | xargs echo rm | ksh -s

Why? Because it allows me to look at what's going to be done before I do it. That way if I have a horrible error (like removing my home directory), I can catch it before it happens. Obviously, this is most important for destructive or irrevocable actions.

link|flag
show 3 more comments
vote up 58 vote down

Another favorite:

!!

Repeats your last command. Most useful in the form:

sudo !!
link|flag
13  
it has the added benefit of making you sound really angry about it too. "Computer, do this." "Access denied". "DO IT!!" – nickf Sep 16 '08 at 1:16
2  
Similar things you can do: mkdir testdir; cd !$.. This runs cd [last word of previous line] (in the example, cd testdir) – dbr Sep 16 '08 at 10:07
4  
Make Me A Sandwich Sudo !! – Kibbee Apr 15 at 16:45
show 3 more comments
vote up 23 vote down

rename

Example:

$ ls
this_has_text_to_find_1.txt
this_has_text_to_find_2.txt
this_has_text_to_find_3.txt
this_has_text_to_find_4.txt

$ rename 's/text_to_find/been_renamed/' *.txt
$ ls
this_has_been_renamed_1.txt
this_has_been_renamed_2.txt
this_has_been_renamed_3.txt
this_has_been_renamed_4.txt

So useful

link|flag
2  
rename isn't bash/readline specific like the other posts however. – guns Mar 12 at 14:49
show 1 more comment
vote up 28 vote down

When running commands, sometimes I'll want to run a command with the previous ones arguments. To do that, you can use this shortcut:

$ mkdir /tmp/new
$ cd !!:*

Occasionally, in lieu of using find, I'll break-out a one-line loop if I need to run a bunch of commands on a list of files.

for file in *.wav; do lame $file `basename $file .wav`.mp3; done;

Configuring the command-line history options in my .bash_login (or .bashrc) is really useful. The following is a cadre of settings that I use on my Macbook Pro.

Setting the following makes bash erase duplicate commands in your history:

export HISTCONTROL="erasedups:ignoreboth"

I also jack my history size up pretty high too. Why not? It doesn't seem to slow anything down on today's microprocessors.

export HISTFILESIZE=500000
export HISTSIZE=100000

Another thing that I do is ignore some commands from my history. No need to remember the exit command.

export HISTIGNORE="&:[ ]*:exit"

You definitely want to set histappend. Otherwise, bash overwrites your history when you exit.

shopt -s histappend

Another option that I use is cmdhist. This lets you save multi-line commands to the history as one command.

shopt -s cmdhist

Finally, on Mac OS X (if you're not using vi mode), you'll want to reset <CTRL>-S from being scroll stop. This prevents bash from being able to interpret it as forward search.

stty stop ""
link|flag
show 5 more comments
vote up 19 vote down
<esc>-.

Inserts the last arguments from your last bash command. It comes in handy more than you think.

cp file /to/some/long/path
cd <esc>-.
link|flag
1  
Also alt-. is the same thing. – Mark Baker Oct 27 '08 at 11:17
show 3 more comments
vote up 0 vote down

Some useful mencoder commands I found out about when looking for some audio and video editing tools:

from .xxx to .avi

mencoder movie.wmv -o movie.avi -ovc lavc -oac lavc

Dump sound from a video:

mplayer -ao pcm -vo null -vc dummy -dumpaudio -dumpfile fileout.mp3 filein.avi
link|flag
vote up 6 vote down

When downloading a large file I quite often do:

while ls -la <filename>; do sleep 5; done

And then just ctrl+c when I'm done (or if ls returns non-zero). It's similar to the watch program but it uses the shell instead, so it works on platforms without watch.

Another useful tool is netcat, or nc. If you do:

nc -l -p 9100 > printjob.prn

Then you can set up a printer on another computer but instead use the IP address of the computer running netcat. When the print job is sent, it is received by the computer running netcat and dumped into printjob.prn.

link|flag
1  
@Ted, watch is not available on all platforms though, like Solaris, Mac OS X, etc. @Porges, not sure what you mean. Can wget also listen on a port? – dreamlax Sep 16 '08 at 21:57
show 2 more comments
vote up 3 vote down

I like a splash of colour in my prompts:

export PS1="\[\033[07;31m\] \h \[\033[47;30m\] \W \[\033[00;31m\] \$ \[\e[m\]"

I'm afraid I don't have a screenshot for what that looks like, but it's supposed to be something like (all on one line):

[RED BACK WHITE TEXT] Computer name 
[BLACK BACK WHITE TEXT] Working Directory 
[WHITE BACK RED TEXT] $

Customise as per what you like to see :)

link|flag
show 1 more comment
vote up 0 vote down

bash can redirect to and from TCP/IP sockets. /dev/tcp/ and /dev/udp.

Some people think it's a security issue, but that's what OS level security like Solaris X's jail is for.

As Will Robertson notes, change prompt to do stuff... print the command # for !nn Set the Xterm terminal name. If it's an old Xterm that doesn't sniff traffic to set it's title.

link|flag
vote up 59 vote down
cd -

It's the command-line equivalent of the back button (takes you to the previous directory you were in).

link|flag
1  
I prefer to use pushd and popd to maintain a directory stack, myself. – Pi Sep 16 '08 at 1:37
1  
But 'cd -' has the advantage of working even if you didn't remember to use pushd. – Sergio Acosta Sep 16 '08 at 5:50
2  
It's worth mentioning that 'cd' takes you to your home directory. – dr-jan Sep 19 '08 at 19:14
vote up 10 vote down

More of a novelty, but its clever...

Top 10 commands used

$ history | awk '{print $2}' | awk 'BEGIN {FS="|"}{print $1}' | sort | uniq -c | sort -n | tail | sort -nr
 242 git
  83 rake
  43 cd
  33 ss
  24 ls
  15 rsg
  11 cap
  10 dig
   9 ping
   3 vi
link|flag
vote up 10 vote down

You can use the watch command in conjunction with another command to look for changes. An example of this was when I was testing my router, and I wanted to get up-to-date numbers on stuff like signal-to-noise ratio, etc.

watch --interval=10 lynx -dump http://dslrouter/stats.html
link|flag
2  
What in the world does 'watch' have to do with bash? – Artem Russakovskii Aug 4 at 14:59
show 1 more comment
vote up 2 vote down

Well, this may be a bit off topic, but if you are an Emacs user, I would say "emacs" is the most powerful trick... before you downvote this, try out "M-x shell" within an emacs instance... you get a shell inside emacs, and have all the power of emacs along with the power of a shell (there are some limitations, such as opening another emacs within it, but in most cases it is a lot more powerful than a vanilla bash prompt).

link|flag
show 3 more comments
prev 1 2 3

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.