vote up 17 vote down star
43

Shell scripts are often used as glue, for automation and simple one-off tasks. What are some of your favorite "hidden" features of the Bash shell/scripting language?

  • One feature per answer
  • Give an example and short description of the feature, not just a link to documentation
  • Label the feature using bold title as the first line

See also:

flag

80% accept rate

29 Answers

vote up 0 vote down

More magic key combinations:

  • Ctrl + r begins a “reverse incremental search” through your command history. As you continue to type, it retrieves the most recent command that contains all the text you enter.

  • Tab completes the word you've typed so far if it's unambiguous.

  • Tab Tab lists all completions for the word you've typed so far.

  • Alt + * inserts all possible completions, which is particularly helpful, say, if you've just entered a potentially destructive command with wildcards:

    rm -r source/d*.c Alt + *
    rm -r source/delete_me.c source/do_not_delete_me.c

  • Ctrl + Alt + e performs alias, history, and shell expansion on the current line. In other words, the current line is redisplayed as it will be processed by the shell:

    ls $HOME/tmp Ctrl Alt + e
    ls -N --color=tty -T 0 /home/cramey

link|flag
vote up 2 vote down

Magic key combinations from the bash man pages:

  • Ctrl + a and Ctrl + e move the cursor to the beginning and end of the current line, respectively.

  • Ctrl + t and Alt + t transpose the character and word before the cursor with the current one, then move the cursor forward.

  • Alt + u and Alt + l convert the current word (from the cursor to the end) to uppercase and lowercase.

    Hint: Press Alt + followed by either of these commands to convert the beginning of the current word.


Bonus man tips:

  • While viewing man pages, use / to search for text within the pages. Use n to jump ahead to the next match or N for the previous match.

  • Speed your search for a particular command or sub-section within the man pages by taking advantage of their formatting:

    o Instead of typing /history expansion to find that section, try /^history, using the caret (^) to find only lines that begin with "history."

    o Try /   read, with a few leading spaces, to search for that builtin command. Builtins are always indented in the man pages.

link|flag
vote up 0 vote down

One I use a lot is !$ to refer to the last word of the last command:

$ less foobar.txt
...
# I dont want that file any more
$ rm !$
link|flag
vote up 2 vote down

My favorite:

sudo !!

Rerun the previous command with sudo.

link|flag
This is a special case of stackoverflow.com/questions/211378/… – Vinko Vrsalovic Sep 13 at 1:00
vote up 0 vote down

Easily move around between multiple directories

Not a hidden feature, but much more flexible than pushd which requires stack-like navigation.

a() { alias $1=cd\ $PWD; }

cd somewhere and type "a 1". Later on just typing "1" will return to that directory.

link|flag
vote up 2 vote down
ctrl-x ctrl-e

Entered one after another this will load the current command into the editor defined in the variable VISUAL. This is really useful for long commands like some of those listed here.

to use vi as your editor:

export VISUAL=vi
link|flag
Wow. Very useful! – razzed Sep 3 at 15:00
vote up 0 vote down

These properties are another one of my favorites.

export HISTCONTROL=erasedups
export HISTSIZE=1000

The first one makes sure bash doesn't log commands more than once, will really improves history's usefulness. The other expands the history size to 1000 from the default of 100. I actually set this to 10000 on my machines.

link|flag
vote up 1 vote down

Using 'let' built-in bash command for basic arithmetic

A=10
let B="A * 10 + 1" # B=101
let B="B / 8"      # B=12, let does not do floating point
let B="(RANDOM % 6) + 1" # B is now a random number between 1 and 6

To do floating point evaluations, you can use the "bc" command (no part of bash).

FP=`echo "scale=4; 10 / 3" | bc` # FP="3.3333"
link|flag
vote up 0 vote down

Changing and executing last command

cd /home/you 
^you^me
link|flag
vote up 4 vote down

SECONDS=0; sleep 5 ; echo "that took approximately $SECONDS seconds"

link|flag
vote up 4 vote down

Running a command before displaying the bash prompt

Set a command in the "PROMPT_COMMAND" env variable and it will be run automatically before each prompt. Example:

[lsc@home]$ export PROMPT_COMMAND="date"
Fri Jun  5 15:19:18 BST 2009
[lsc@home]$ ls
file_a  file_b  file_c
Fri Jun  5 15:19:19 BST 2009
[lsc@home]$ ls

For the next april fools, add "export PROMPT_COMMAND=cd" to someone's .bashrc then sit back and watch the confusion unfold.

link|flag
vote up 4 vote down

Here is one of my favorites. This sets tab completion to not be case sensitive. It's really great for quickly typing directory paths, especially on a mac where the file system is not case sensitive by default. I put this in .inputrc in my home folder.

set completion-ignore-case on
link|flag
vote up 5 vote down

Quick&Dirty correction of typos (especially useful for long commands over slow connections where using the command history and scrolling through it would be horrible):

$ cat /proc/cupinfo
cat: /proc/cupinfo: No such file or directory
$ ^cup^cpu

link|flag
is there any way to find more about this or similar features? googling for ^foo^bar is not that satisfying :) – Tetha Jul 9 at 19:41
man bash? :) (or info bash) – mihi Jul 10 at 15:50
vote up 11 vote down

If you want to keep a process running after you log out:

disown -h <pid>

is a useful bash built-in. Unlike nohup, you can run disown on an already-running process.

First, stop your job with control-Z, get the pid from ps (or use echo $!), use bg to send it to the background, then use disown with the -h flag.

Don't forget to background your job or it will be killed when you logout.

link|flag
That is sweet! So many times I've wanted to do that. Can you also redirect outputs afterwards? – razzed Sep 3 at 14:55
vote up 12 vote down

insert preceding line's 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
Definetly +1. Thanks for this one, so useful yet so hidden. – Montecristo Jun 5 at 22:19
Can I use Alt+. to give you +2 ? – Adam Liss Sep 12 at 19:13
vote up 0 vote down

Embedded Command substitution:

hostname && dig +short $(hostname) && dig +short -x $(dig +short $(hostname))

This command is good for checking RDNS on your mail server. :P

Nathan Coffield, Support Engineer, HostMySite.com

link|flag
vote up 6 vote down

Regular expression handling

Recent bash releases feature regular expression matching, so you can do:

if [[ "mystring" =~ REGEX ]] ; then  
    echo match
fi

where REGEX is a raw regular expression in the format described by man re_format.

Matches from any bracketed parts are stored in the BASH_REMATCH array, starting at element 1 (element 0 is the matched string in its entirety), so you can use this to do regex-powered parsing too.

link|flag
vote up 1 vote down

Truncate content of a file (zeroing file)

> file

Specifically, this is very good for truncating log files, when the file is open by another process, which still may write to the file.

link|flag
vote up -4 vote down

Not that is is a hidden feature. I think it dosn't exist, but it would be magic to have a special syntax allowing to work on thinks on distinct machine. Something like

cat file1 > machine2:file1

that would copy file1 to you directory on machine2. You can also imagine running programs on distinct machines. It would be something like a hidden ssh connection.

link|flag
I wonder what scp could be for... – Adriano Varoli Piazza Dec 18 '08 at 18:15
Was the answer by stephanea sarcasm or what? – Vinko Vrsalovic Dec 18 '08 at 18:55
or just pipe it over ssh – Redbeard 0x0A Mar 2 at 19:56
ssh machine2 "cat > file1" < file1 – niXar Jun 22 at 10:18
This topic is for existing features, sorry. And scp and ssh are your friends. – HMage Jul 30 at 11:29
vote up 3 vote down

C style numeric expressions:

let x="RANDOM%2**8"
echo -n "$x = 0b"
for ((i=8; i>=0; i--)); do
  let n="2**i"
  if (( (x&n) == n )); then echo -n "1"
  else echo -n "0"
  fi
done
echo ""
link|flag
vote up 10 vote down

Get back history commands and arguments

It's possible to selectively access previous commands and arguments using the ! operator. It's very useful when you are working with long paths.

You can check your last commands with history.

You can use previous commands with !<n> being n the index of the command in history, negative numbers count backwards from the last command in history.

ls -l foo bar
touch foo bar
!-2

You can use previous arguments with !:<n>, zero is the command, >= 1 are the arguments.

ls -l foo
touch !:2
cp !:1 bar

And you can combine both with !<n>:<m>

ls -l foo bar
touch !:2 !:3
rm !-2:2 !-2:3
!-3

Another ! special modifiers are:

  • * for all the arguments

    ls -l foo bar
    ls !*
    
  • ^ for the first argument (!1 == !^)

  • $ for the last argument

    ls -l foo bar
    cat !$ > /dev/null
    
link|flag
2  
The ^R keyboard shortcut is really handy too – Mark Baker Oct 21 '08 at 15:29
2  
I also like alt-^ (alt-shift-6 on US keyboards). It expands history sequences like !:2 so you can see what a command is going to do before you run it. – Doug Jun 30 at 14:20
vote up 5 vote down

Here two of my favorites:

To check the syntax w/o really executing the script use:

bash -n script.sh

Go back to the last directory (yes I know pushd and popd, but this is quicker)

cd -
link|flag
vote up 7 vote down

Arrays:

#!/bin/bash

array[0]="a string"
array[1]="a string with spaces and \"quotation\" marks in it"
array[2]="a string with spaces, \"quotation marks\" and (parenthesis) in it"

echo "There are ${#array[*]} elements in the array."
for n in "${array[@]}"; do
    echo "element = >>${n}<<"
done

More details on arrays (and other advanced bash scripting stuff) can be found in the Advanced Bash-Scripting Guide.

link|flag
vote up 20 vote down

Almost everything listed under EXPANSION section in the manual

In particular, parameter expansion:

~> I=foobar
~> echo ${I/oo/aa} #replacement
faabar
~> echo ${I:1:2}   #substring
oo
~> echo ${I%bar}   #trailing substitution
foo
~> echo ${I#foo}   #leading substitution
bar
link|flag
Nice, so thats how I got %Ix=y% in cmd.exe ... :) – majkinetor Apr 25 at 19:14
vote up 6 vote down

I like the -x feature, allowing to see what's going on in your script.

bash -x script.sh
link|flag
vote up 9 vote down

The special variable random:

if [[ $(($RANDOM % 6)) = 0 ]]
    then echo "BANG"
else
    echo "Try again"
fi
link|flag
vote up 3 vote down

I recently read Csh Programming Considered Harmful which contained this astounding gem:

Consider the pipeline:

A | B | C

You want to know the status of C, well, that's easy: it's in $?, or $status in csh. But if you want it from A, you're out of luck -- if you're in the csh, that is. In the Bourne shell, you can get it, although doing so is a bit tricky. Here's something I had to do where I ran dd's stderr into a grep -v pipe to get rid of the records in/out noise, but had to return the dd's exit status, not the grep's:

device=/dev/rmt8
dd_noise='^[0-9]+\+[0-9]+ records (in|out)$'
exec 3>&1
status=`((dd if=$device ibs=64k 2>&1 1>&3 3>&- 4>&-; echo $? >&4) |
	egrep -v "$dd_noise" 1>&2 3>&- 4>&-) 4>&1`
exit $status;
link|flag
6  
What you want is to use the PIPESTATUS variable, which is an array of the exit statuses of each command in the pipe. ${PIPESTATUS[0]} would be what you want here. – Steve Baker Oct 17 '08 at 13:38
Steve, I never knew that - post it as an answer here! (I'll upvote it if you do :) – Mark Baker Oct 17 '08 at 16:26
vote up 5 vote down

Using arithmetic:

if [[ $((2+1)) = $((1+2)) ]]
    then echo "still ok"
fi
link|flag
It's amazing how many people don't know this, and use expr in their scripts. – Mark Baker Oct 17 '08 at 8:28
1  
Sometimes the arithmetic expansion is sufficient: ((2 + 1 == 1 + 2))&&echo OK – radoulov Mar 17 at 10:19
vote up 5 vote down

Using Infix Boolean Operators

Consider the simple if:

if [ 2 -lt 3 ]
    then echo "Numbers are still good!"
fi

That -lt looks kinda ugly. Not very modern. If you use double brackets around your boolean expression you can the normal boolean operators!

if [[ 2 < 3 ]]
    then echo "Numbers are still good!"
fi
link|flag
1  
This is not a feature of Bash, but an external program: yes, '[[' is a stand-alone program. – Mathieu Garstecki Oct 17 '08 at 8:30
1  
madmath: I think you'll find that [ is usually a symlink or hardlink to test, while [[ is a shell built-in. It needs to be parsed by the shell otherwise < looks like input redirection. – Greg Hewgill Oct 17 '08 at 8:33
No, '[' is a stand alone program. '[[' is not – Vinko Vrsalovic Oct 17 '08 at 8:33
$ type [[ [[ is a shell keyword $ which [[ $ # No output – Mark A. Nicolosi Oct 17 '08 at 21:53
Apparently SO doesn't like newlines in comments, hopefully that isn't too hard to parse. That was on Ubuntu with Bash 3.2.39, BTW. – Mark A. Nicolosi Oct 17 '08 at 21:54

Your Answer

Get an OpenID
or

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