vote up 63 vote down star
97

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

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 4 vote down

! will execute the last command which matches. Example:

!b will run "build whatever -O -p -t -i -on" !. will run ./a.out

works the best with long and repetitive commands, like compile build execute etc. Saved me sooo much time when coding/testing.

link|flag
vote up 1 vote down

The FIGNORE environment variable is nice when you want TAB completion to ignore files or folders with certain suffixes, e.g.:

export FIGNORE="CVS:.svn:~"

Use the IFS environment variable when you want to define an item separator other than space, e.g.:

export IFS="
"

This will make you able to loop through files and folders with spaces in them without performing any magic, like this:

$ touch "with spaces" withoutspaces
$ for i in `ls *`; do echo $i; done
with
spaces
withoutspaces
$ IFS="
"
$ for i in `ls *`; do echo $i; done
with spaces
withoutspaces
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

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 2 vote down

CTRL+D quits the shell.

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

Want to get the last few lines of a log file?

tail /var/log/syslog

Want to keep an eye on a log file for when it changes?

tail -f /var/log/syslog

Want to quickly read over a file from the start?

more /var/log/syslog

Want to quickly find if a file contains some text?

grep "find this text" /var/log/syslog
link|flag
show 2 more comments
vote up 1 vote down

You should be able to paste the following into a bash terminal window.

Display ANSI colour palette:

e="\033["
for f in 0 7 `seq 6`; do
  no="" bo=""
  for b in n 7 0 `seq 6`; do
    co="3$f"; p="  "
    [ $b = n ] || { co="$co;4$b";p=""; }
    no="${no}${e}${co}m   ${p}${co} ${e}0m"
    bo="${bo}${e}1;${co}m ${p}1;${co} ${e}0m"
  done
  echo -e "$no\n$bo"
done

256 colour demo:

yes "$(seq 232 255;seq 254 -1 233)" |
while read i; do printf "\x1b[48;5;${i}m\n"; sleep .01; done
link|flag
vote up 7 vote down

I often have aliases for vi, ls, etc. but sometimes you want to escape the alias. Just add a back slash to the command in front:

Eg:

$ alias vi=vim
$ # To escape the alias for vi:
$ \vi # This doesn't open VIM

Cool, isn't it?

link|flag
vote up 1 vote down

A simple thing to do when you realize you just typed the wrong line is hit Ctrl+C; if you want to keep the line, but need to execute something else first, begin a new line with a back slash - \, then Ctrl+C. The line will remain in your history.

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

Similar to many above, my current favorite is the keystroke [alt]. (Alt and "." keys together) this is the same as $! (Inserts the last argument from the previous command) except that it's immediate and for me easier to type. (Just can't be used in scripts)

eg:

mkdir -p /tmp/test/blah/oops/something
cd [alt].
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

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

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 1 vote down

A few years ago, I discovered the p* commands or get information about processes: ptree, pgrep, pkill, and pfiles. Of course, the mother of them all is ps, but you need to pipe the output into less, grep and/or awk to make sense of the output under heavy load. top (and variants) help too.

link|flag
vote up 1 vote down

Not really obscure, but one of the features I absolutely love is tab completion.
Really useful when you are navigating trough an entire subtree structure, or when you are using some obscure, or long command!

link|flag
vote up 30 vote down

My favorite is '^string^string2' which takes the last command, replaces string1 with string2 and executes it

$ ehco foo bar baz
bash: ehco: command not found
$ ^ehco^echo^
foo bar baz

Bash command line history guide

link|flag
show 2 more comments
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 5 vote down
type -a PROG

in order to find all the places where PROG is available, usually somewhere in ~/bin rather than the one in /usr/bin/PROG that might have been expected.

link|flag
vote up 2 vote down

Eliminate duplicate lines from a file

#sort -u filename > filename.new

List all lines that do not match a condition

#grep -v ajsk filename

These are not necessarily Bash specific (but hey neither is ls -thor :) )

Some other useful cmds:

prtdiag, psrinfo, prtconf - more info here and here (posts on my blog).

link|flag
vote up 20 vote down

My favorite command is "ls -thor"

It summons the power of the gods to list the most recently modified files in a conveniently readable format.

link|flag
vote up 1 vote down

$_ (dollar underscore): the last word from the previous command. Similar to !$ except it doesn't put its substitution in your history like !$ does.

link|flag
vote up 7 vote down

I use the following a lot:

The :p modifier to print a history result. E.g.

!!:p

Will print the last command so you can check that it's correct before running it again. Just enter !! to execute it.

In a similar vein:

!?foo?:p

Will search your history for the most recent command that contained the string 'foo' and print it.

If you don't need to print,

!?foo

does the search and executes it straight away.

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

du -a | sort -n | tail -99

to find the big files (or directories of files) to clean up to free up disk space.

link|flag
vote up 1 vote down

<anything> | sort | uniq -c | sort -n

will give you a count of all the different occurrences of <anything>.

Often, awk, sed, or cut help with the parsing of data in <anything>.

link|flag
vote up 5 vote down

I've always been partial to:

ctrl-E # move cursor to end of line
ctrl-A # move cursor to beginning of line

I also use shopt -s cdable_vars, then you can create bash variables to common directories. So, for my company's source tree, I create a bunch of variables like:

export Dcentmain="/var/localdata/p4ws/centaur/main/apps/core"

then I can change to that directory by cd Dcentmain.

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

When navigating between two separate directories and copying files back and forth, I do this:

cd /some/where/long
src=`pwd`
cd /other/where/long
dest=`pwd`

cp $src/foo $dest

command completion will work by expanding the variable, so you can use tab completion to specify a file you're working with.
link|flag
vote up 7 vote down

One preferred way of navigating when I'm using multiple directories in widely separate places in a tree hierarchy is to use acf_func.sh (listed below). Once defined, you can do

cd --

to see a list of recent directories, with a numerical menu

cd -2

to go to the second-most recent directory.

Very easy to use, very handy.

Here's the code:

# do ". acd_func.sh"
# acd_func 1.0.5, 10-nov-2004
# petar marinov, http:/geocities.com/h2428, this is public domain

cd_func ()
{
  local x2 the_new_dir adir index
  local -i cnt

  if [[ $1 ==  "--" ]]; then
    dirs -v
    return 0
  fi

  the_new_dir=$1
  [[ -z $1 ]] && the_new_dir=$HOME

  if [[ ${the_new_dir:0:1} == '-' ]]; then
    #
    # Extract dir N from dirs
    index=${the_new_dir:1}
    [[ -z $index ]] && index=1
    adir=$(dirs +$index)
    [[ -z $adir ]] && return 1
    the_new_dir=$adir
  fi

  #
  # '~' has to be substituted by ${HOME}
  [[ ${the_new_dir:0:1} == '~' ]] && the_new_dir="${HOME}${the_new_dir:1}"

  #
  # Now change to the new dir and add to the top of the stack
  pushd "${the_new_dir}" > /dev/null
  [[ $? -ne 0 ]] && return 1
  the_new_dir=$(pwd)

  #
  # Trim down everything beyond 11th entry
  popd -n +11 2>/dev/null 1>/dev/null

  #
  # Remove any other occurence of this dir, skipping the top of the stack
  for ((cnt=1; cnt <= 10; cnt++)); do
    x2=$(dirs +${cnt} 2>/dev/null)
    [[ $? -ne 0 ]] && return 0
    [[ ${x2:0:1} == '~' ]] && x2="${HOME}${x2:1}"
    if [[ "${x2}" == "${the_new_dir}" ]]; then
      popd -n +$cnt 2>/dev/null 1>/dev/null
      cnt=cnt-1
    fi
  done

  return 0
}

alias cd=cd_func

if [[ $BASH_VERSION > "2.05a" ]]; then
  # ctrl+w shows the menu
  bind -x "\"\C-w\":cd_func -- ;"
fi
link|flag
vote up 5 vote down

string multiple commands together using the && command:

./run.sh && tail -f log.txt

or

kill -9 1111 && ./start.sh

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

The easiest keystrokes for me for "last argument of the last command" is !$

echo what the heck?

what the heck?

echo !$

heck?
link|flag
show 1 more comment

Your Answer

Get an OpenID
or

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