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

prev 1 2 3
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 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 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 0 vote down

And this one is key for me actually:

set -o vi

/Allan

link|flag
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 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 0 vote down

alias mycommand = 'verylongcommand -with -a -lot -of -parameters' alias grep='grep --color'

find more than one word with grep :

netstat -c |grep 'msn\|skype\|icq'

link|flag
vote up 0 vote down

You changed to a new directory and want to move a file from the new directory to the old one. In one move: mv file $OLDPWD

link|flag
vote up 0 vote down

If I am searching for something in a directory, but I am not sure of the file, then I just grep the files in the directory by:

find . -exec grep whatIWantToFind {} \;
link|flag
show 2 more comments
vote up 0 vote down
alias -- ddt='ls -trFld'
dt () { ddt --color "$@" | tail -n 30; }

Gives you the most recent files in the current directory. I use it all the time...

link|flag
vote up 0 vote down

To be able to quickly edit a shell script you know is in your $PATH (do not try with ls...):

function viscr { vi $(which $*); }
link|flag
vote up 0 vote down

Apropos history -- using cryptic carets etc is not entirely intuitive. To print all history items containing a given string:

function histgrep { fc -l -$((HISTSIZE-1)) | egrep "$@" ;}
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
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

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

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

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 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 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 0 vote down
sudo !!

Runs the last command with admin privilages

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

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

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

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'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 0 vote down

alias ..='cd ..'

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

link|flag
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.