vote up 62 vote down star
94

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

86 Answers

1 2 3 next
vote up 0 vote down

alias ..='cd ..'

So when navigating back up a directory just use ..<Enter>

link|flag
vote up 1 vote down

pbcopy

This copies to the Mac system clipboard. You can pipe commands to it...try:

pwd | pbcopy

link|flag
vote up 1 vote down

insert preceding lines final parameter

alt-. the most useful key combination ever, try it and see, for some reason no one knows about this one.

press it again and again to select older last parameters.

great when you want to do something else to something you used just a moment ago.

link|flag
vote up 3 vote down

http://www.commandlinefu.com is also a great site.

learned quite useful things there like

sudo !! or mount | column -t

link|flag
vote up 1 vote down

since I alway need the 'for i in $(ls) statement i made a shortcut

fea(){
   if test -z ${2:0:1}; then action=echo; else action=$2; fi
   for i in $(ls $1);
      do $action $i ;
   done;
}

and another one is

echo ${!B*}

which will print a list of all defined variables that start with 'B'

link|flag
vote up 0 vote down

I'm a big fan of Bash job control, mainly the use of Control-Z and fg, especially if I'm doing development in a terminal. If I've got emacs open and need to compile, deploy, etc. I just Control-Z to suspend emacs, do what I need, and fg to bring it back. This keeps all of the emacs buffers intact and makes things much easier than re-launching whatever I'm doing.

link|flag
vote up 1 vote down

Shell-fu is a place for storing, moderating and propagating command line tips and tricks. A bit like StackOverflow, but solely for shell. You'll find plenty of answers to this question there.

link|flag
vote up 1 vote down

Using alias can be time-saving

alias myDir = "cd /this/is/a/long/directory; pwd"
link|flag
vote up 0 vote down

I want to mention how we can redirect top command output to file using its batch mode (-b)

$ top -b -n 1 > top.out.$(date +%s)

By default, top is invoked using interactive mode in which top runs indefinitely and accepts keypress to redefine how top works.

A post I wrote can be found here

link|flag
vote up 0 vote down

I like to set a prompt which shows the current directory in the window title of an xterm. It also shows the time and current directory. In addition, if bash wants to report that a background job has finished, it is reported in a different colour using ANSI escape sequences. I use a black-on-light console so my colours may not be right for you if you favour light-on-black.

PROMPT_COMMAND='echo -e "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/~}\007\033[1;31m${PWD/#$HOME/~}\033[1;34m"'
PS1='\[\e[1;31m\]\t \$ \[\e[0m\]'

Make sure you understand how to use \[ and \] correctly in your PS1 string so that bash knows how long your prompt-string actually renders on screen. This is so it can redraw your command-line correctly when you move beyond a single line command.

link|flag
vote up 0 vote down

Two of my favorites are:

1) Make tab-completion case insensitive (e.g. "cd /home/User " converts your command line to: "cd /home/user" if the latter exists and the former doesn't. You can turn it on with "set completion-ignore-case on" at the prompt, or add it permanently by adding "set completion-ignore-case on" to your .inputrc file.

2) The built-in 'type' command is like "which" but aware of aliases also. For example

$ type cdhome
cdhome is aliased to 'cd ~'
$ type bash
bash is /bin/bash
link|flag
vote up 0 vote down
find -iregex '.*\.py$\|.*\.xml$' | xargs egrep -niH 'a.search.pattern'  | vi -R -

Searches a pattern in all Python files and all xml files and pipes the result in a readonly vim session.

link|flag
vote up 0 vote down
sudo !!

Runs the last command with admin privilages

link|flag
vote up 17 vote down

How to list only subdirectories in the current one ?

ls -d */

It's a simple trick, but you wouldn't know how much time I needed to find that one !

link|flag
1  
Excellent! All these years the best I could come up with was alias lsd='ls -F | grep --color /', which would list the same thing but in a more lame fashion. However, it would list one dir per line, for ease of parsing. I've modified your command to do the same: ls -d1 */ – Artem Russakovskii Aug 4 at 15:06
show 2 more comments
vote up 1 vote down

On OS X,

ESC .

will cycle through recent args in place. That's: press and release ESC, then press and release . (period key). On Ubuntu, I think it's ALT+..

You can do that more than once, to go back through all your recent args. It's kinda like CTRL+R, but for args only. It's also much safer than !! or $!, since you see what you're going to get before you actually run the command.

link|flag
vote up 16 vote down

Sure, you can "diff file1.txt file2.txt", but Bash supports process substitution, which allows you to diff the output of commands.

For example, let's say I want to make sure my script gives me the output I expect. I can just wrap my script in <( ) and feed it to diff to get a quick and dirty unit test:

$ cat myscript.sh
#!/bin/sh
echo -e "one\nthree"
$
$ ./myscript.sh 
one
three
$
$ cat expected_output.txt
one
two
three
$
$ diff <(./myscript.sh) expected_output.txt
1a2
> two
$

As another example, let's say I want to check if two servers have the same list of RPMs installed. Rather than sshing to each server, writing each list of RPMs to separate files, and doing a diff on those files, I can just do the diff from my workstation:

$ diff <(ssh server1 'rpm -qa | sort') <(ssh server2 'rpm -qa | sort')
241c240
< kernel-2.6.18-92.1.6.el5
---
> kernel-2.6.18-92.el5
317d315
< libsmi-0.4.5-2.el5
727,728d724
< wireshark-0.99.7-1.el5
< wireshark-gnome-0.99.7-1.el5
$

There are more examples in the Advanced Bash-Scripting Guide at http://tldp.org/LDP/abs/html/process-sub.html.

link|flag
vote up 2 vote down

Using history substiution characters !# to access the current command line, in combination with ^, $, etc.

E.g. move a file out of the way with an "old-" prefix:

mv file-with-long-name-typed-with-tab-completion.txt old-!#^

link|flag
vote up 0 vote down

I have a really stupid, but extremely helpful one when navigating deep tree structures. Put this in .bashrc (or similar):

alias cd6="cd ../../../../../.."
alias cd5="cd ../../../../.."
alias cd4="cd ../../../.."
alias cd3="cd ../../.."
alias cd2="cd ../.."
link|flag
vote up 1 vote down

Delete everything except important-file:

# shopt -s extglob
# rm -rf !(important-file)

The same in zsh:

# rm -rf *~important-file

Bevore I knew that I had to move the important fiels to an other dictionary, delete everything and move the important back again.

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

One of my favorites tricks with bash is the "tar pipe". When you have a monstrous quantity of files to copy from one directory to another, doing "cp * /an/other/dir" doesn't work if the number of files is too high and explode the bash globber, so, the tar pipe :

(cd /path/to/source/dir/ ; tar cf - * ) | (cd /path/to/destination/ ; tar xf - )

...and if you have netcat, you can even do the "netcat tar pipe" through the network !!

link|flag
vote up 1 vote down

Some Bash nuggets also here:

http://codesnippets.joyent.com/tag/bash

link|flag
vote up 4 vote down

I have got a secret weapon : shell-fu.

There are thousand of smart tips, cool tricks and efficient recipes that most of the time fit on a single line.

One that I love (but I cheat a bit since I use the fact that Python is installed on most Unix system now) :

alias webshare='python -c "import SimpleHTTPServer;SimpleHTTPServer.test()"'

Now everytime you type "webshare", the current directory will be available through the port 8000. Really nice when you want to share files with friends on a local network without usb key or remote dir. Streaming video and music will work too.

And of course the classic fork bomb that is completely useless but still a lot of fun :

$ :(){ :|:& };:

Don't try that in a production server...

link|flag
show 2 more comments
vote up 0 vote down
while IFS= read -r line; do
echo "$line"
done < somefile.txt

This is a good way to process a file line by line. Clearing IFS is needed to get whitespace characters at the front or end of the line. The "-r" is needed to get all raw characters, including backslashes.

link|flag
vote up 0 vote down

I always set my default prompt to "username@hostname:/current/path/name/in/full> "

PS1='\u@\h:\w> '
export PS1

Saves lots of confusion when you're dealing with lots of different machines.

link|flag
vote up 1 vote down

I'm new to programming on a mac, and I miss being able to launch gui programs from bash...so I have to create functions like this:

function macvim
{
/Applications/MacVim.app/Contents/MacOS/Vim "$@" -gp &
}
link|flag
vote up 1 vote down

Top 10 commands again (like ctcherry's post, only shorter):

history | awk '{ print $2 }' | sort | uniq -c |sort -rn | head
link|flag
vote up 0 vote down

As a quick calculator, say to compute a percentage:

$ date
Thu Sep 18 12:55:33 EDT 2008
$ answers=60
$ curl "http://stackoverflow.com/questions/68372/what-are-some-of-your-favorite-command-line-tricks-using-bash"  > tmp.html
$ words=`awk '/class="post-text"/ {s = s $0} \
> /<\/div>/ { gsub("<[^>]*>", "", s); print s; s = ""} \
> length(s) > 0 {s = s $0}' tmp.html \
> |  awk '{n = n + NF} END {print n}'`
$ answers=`awk '/([0-9]+) Answers/ {sub("<h2>", "", $1); print $1}' tmp.html`

and finally:

$ echo $words words, $answers answers, $((words / $answers)) words per answer
4126 words, 60 answers, 68 words per answer
$

Not that division is truncated, not rounded. But often that's good enough for a quick calculation.

link|flag
vote up 0 vote down

When running a command with lots of output (like a big "make") I want to not only save the output, but also see it:

make install 2>&1 | tee E.make

link|flag
vote up 0 vote down

Custom Tab Completion (compgen and complete bash builtins)

Tab Completion is nice, but being able to apply it to more than just filenames is great. I have used it to create custom functions to expand arguments to commands I use all the time. For example, lets say you often need to add the FQDN as an argument to a command (e.g. ping blah.really.long.domain.name.foo.com). You can use compgen and complete to create a bash function that reads your /etc/hosts file for results so all you have to type then is:

ping blah.<tab>

and it will display all your current match options.

So basically anything that can return a word list can be used as a function.

link|flag
vote up 0 vote down

Good for making an exact recursive copy/backup of a directory including symlinks (rather than following them or ignoring them like cp):

$ mkdir new_dir
$ cd old_dir
$ tar cf - . | ( cd ../old_dir; tar xf - )
link|flag
1 2 3 next

Your Answer

Get an OpenID
or

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