Hidden features of Bash - Stack Overflow
most recent 30 from stackoverflow.com
2009-12-08T10:47:46Z
http://stackoverflow.com/feeds/question/211378
http://www.creativecommons.org/licenses/by-nc/2.5/rdf
http://stackoverflow.com/questions/211378/hidden-features-of-bash
18
Hidden features of Bash
Patrick
2008-10-17T08:14:02Z
2009-09-22T13:49:11Z
<p>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?</p>
<ul>
<li>One feature per answer</li>
<li>Give an example and short description of the feature, not just a link to documentation</li>
<li>Label the feature using bold title as the first line</li>
</ul>
<p>See also:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/132241/hidden-features-of-c">Hidden features of C</a></li>
<li><a href="http://stackoverflow.com/questions/9033/hidden-features-of-c">Hidden features of C#</a></li>
<li><a href="http://stackoverflow.com/questions/75538/hidden-features-of-c">Hidden features of C++</a></li>
<li><a href="http://stackoverflow.com/questions/102254/hidden-features-of-delphi">Hidden features of Delphi</a></li>
<li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">Hidden features of Python</a></li>
<li><a href="http://stackoverflow.com/questions/15496/hidden-features-of-java">Hidden features of Java</a></li>
<li><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript">Hidden features of JavaScript</a></li>
<li><a href="http://stackoverflow.com/questions/63998/hidden-features-of-ruby">Hidden features of Ruby</a></li>
<li><a href="http://stackoverflow.com/questions/61401/hidden-features-of-php">Hidden features of PHP</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl">Hidden features of Perl</a></li>
<li><a href="http://stackoverflow.com/questions/102084/hidden-features-of-vbnet">Hidden features of VB.Net</a></li>
</ul>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/211382#211382
5
Answer by Patrick for Hidden features of Bash
Patrick
2008-10-17T08:15:08Z
2008-10-17T08:15:08Z
<p><strong>Using Infix Boolean Operators</strong></p>
<p>Consider the simple if:</p>
<pre><code>if [ 2 -lt 3 ]
then echo "Numbers are still good!"
fi
</code></pre>
<p>That -lt looks kinda ugly. Not very modern. If you use double brackets around your boolean expression you can the normal boolean operators!</p>
<pre><code>if [[ 2 < 3 ]]
then echo "Numbers are still good!"
fi
</code></pre>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/211398#211398
5
Answer by Vinko Vrsalovic for Hidden features of Bash
Vinko Vrsalovic
2008-10-17T08:26:01Z
2008-10-17T08:31:59Z
<p>Using arithmetic:</p>
<pre><code>if [[ $((2+1)) = $((1+2)) ]]
then echo "still ok"
fi
</code></pre>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/211406#211406
3
Answer by Greg Hewgill for Hidden features of Bash
Greg Hewgill
2008-10-17T08:29:51Z
2008-10-17T08:29:51Z
<p>I recently read <a href="http://www.faqs.org/faqs/unix-faq/shell/csh-whynot/" rel="nofollow">Csh Programming Considered Harmful</a> which contained this astounding gem:</p>
<blockquote>
<p>Consider the pipeline:</p>
</blockquote>
<pre><code>A | B | C
</code></pre>
<blockquote>
<p>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:</p>
</blockquote>
<pre><code>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;
</code></pre>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/211410#211410
9
Answer by Vinko Vrsalovic for Hidden features of Bash
Vinko Vrsalovic
2008-10-17T08:31:15Z
2008-10-17T08:31:15Z
<p>The special variable random:</p>
<pre><code>if [[ $(($RANDOM % 6)) = 0 ]]
then echo "BANG"
else
echo "Try again"
fi
</code></pre>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/211413#211413
6
Answer by stephanea for Hidden features of Bash
stephanea
2008-10-17T08:33:29Z
2008-10-17T08:33:29Z
<p>I like the -x feature, allowing to see what's going on in your script.</p>
<pre><code>bash -x script.sh
</code></pre>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/211460#211460
20
Answer by Vinko Vrsalovic for Hidden features of Bash
Vinko Vrsalovic
2008-10-17T08:47:36Z
2008-10-17T08:47:36Z
<p>Almost everything listed under EXPANSION section in the manual</p>
<p>In particular, parameter expansion:</p>
<pre><code>~> 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
</code></pre>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/211525#211525
7
Answer by JesperE for Hidden features of Bash
JesperE
2008-10-17T09:17:31Z
2008-10-17T09:17:31Z
<p>Arrays:</p>
<pre><code>#!/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
</code></pre>
<p>More details on arrays (and other advanced bash scripting stuff) can be found in the <a href="http://tldp.org/LDP/abs/html/" rel="nofollow">Advanced Bash-Scripting Guide</a>.</p>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/211581#211581
5
Answer by André for Hidden features of Bash
André
2008-10-17T09:49:06Z
2008-10-17T16:45:48Z
<p>Here two of my favorites:</p>
<p>To check the syntax w/o really executing the script use:</p>
<pre><code>bash -n script.sh
</code></pre>
<p>Go back to the last directory (yes I know pushd and popd, but this is quicker)</p>
<pre><code>cd -
</code></pre>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/211913#211913
10
Answer by Jaime Soriano for Hidden features of Bash
Jaime Soriano
2008-10-17T12:16:22Z
2008-10-17T12:16:22Z
<p><strong>Get back history commands and arguments</strong></p>
<p>It's possible to selectively access previous commands and arguments using the <code>!</code> operator. It's very useful when you are working with long paths.</p>
<p>You can check your last commands with <code>history</code>.</p>
<p>You can use previous commands with <code>!<n></code> being <code>n</code> the index of the command in <code>history</code>, negative numbers count backwards from the last command in history.</p>
<pre><code>ls -l foo bar
touch foo bar
!-2
</code></pre>
<p>You can use previous arguments with <code>!:<n></code>, zero is the command, >= 1 are the arguments.</p>
<pre><code>ls -l foo
touch !:2
cp !:1 bar
</code></pre>
<p>And you can combine both with <code>!<n>:<m></code></p>
<pre><code>ls -l foo bar
touch !:2 !:3
rm !-2:2 !-2:3
!-3
</code></pre>
<p>Another <code>!</code> special modifiers are:</p>
<ul>
<li><p><code>*</code> for all the arguments</p>
<pre><code>ls -l foo bar
ls !*
</code></pre></li>
<li><p><code>^</code> for the first argument (<code>!1</code> == <code>!^</code>)</p></li>
<li><p><code>$</code> for the last argument</p>
<pre><code>ls -l foo bar
cat !$ > /dev/null
</code></pre></li>
</ul>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/212238#212238
3
Answer by Steve Baker for Hidden features of Bash
Steve Baker
2008-10-17T13:56:40Z
2008-10-17T13:56:40Z
<p>C style numeric expressions:</p>
<pre><code>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 ""
</code></pre>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/213947#213947
-4
Answer by stephanea for Hidden features of Bash
stephanea
2008-10-17T21:43:54Z
2008-10-17T21:43:54Z
<p>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</p>
<pre><code>cat file1 > machine2:file1
</code></pre>
<p>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. </p>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/255695#255695
1
Answer by Thevs for Hidden features of Bash
Thevs
2008-11-01T15:48:03Z
2008-11-01T15:48:03Z
<p><strong>Truncate content of a file (zeroing file)</strong></p>
<pre><code>> file
</code></pre>
<p>Specifically, this is very good for truncating log files, when the file is open by another process, which still may write to the file.</p>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/377929#377929
6
Answer by th_in_gs for Hidden features of Bash
th_in_gs
2008-12-18T14:03:24Z
2008-12-18T14:03:24Z
<p><strong>Regular expression handling</strong></p>
<p>Recent bash releases feature regular expression matching, so you can do:</p>
<pre><code>if [[ "mystring" =~ REGEX ]] ; then
echo match
fi
</code></pre>
<p>where REGEX is a raw regular expression in the format described by man re_format.</p>
<p>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.</p>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/378685#378685
0
Answer by Nathacof for Hidden features of Bash
Nathacof
2008-12-18T18:02:11Z
2008-12-18T18:09:41Z
<p>Embedded Command substitution:</p>
<blockquote>
<p>hostname && dig +short $(hostname) && dig +short -x $(dig +short $(hostname))</p>
</blockquote>
<p>This command is good for checking RDNS on your mail server. :P</p>
<p>Nathan Coffield, Support Engineer, <a href="http://www.hostmysite.com/support" rel="nofollow">HostMySite.com</a></p>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/585652#585652
13
Answer by chillitom for Hidden features of Bash
chillitom
2009-02-25T11:35:36Z
2009-09-22T13:49:11Z
<p><strong>insert preceding line's final parameter</strong></p>
<p><kbd>alt</kbd>-<kbd>.</kbd> the most useful key combination ever, try it and see, for some reason no one knows about this one.</p>
<p>press it again and again to select older last parameters. </p>
<p>great when you want to do something else to something you used just a moment ago.</p>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/585666#585666
12
Answer by Alex Reynolds for Hidden features of Bash
Alex Reynolds
2009-02-25T11:42:32Z
2009-02-25T12:12:59Z
<p><strong>If you want to keep a process running after you log out:</strong></p>
<p><code>disown -h <pid></code> </p>
<p>is a useful bash built-in. Unlike <code>nohup</code>, you can run <code>disown</code> on an already-running process.</p>
<p>First, stop your job with control-Z, get the pid from <code>ps</code> (or use <code>echo $!</code>), use <code>bg</code> to send it to the background, then use <code>disown</code> with the -h flag. </p>
<p>Don't forget to background your job or it will be killed when you logout.</p>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/789475#789475
5
Answer by mihi for Hidden features of Bash
mihi
2009-04-25T18:32:58Z
2009-04-25T18:32:58Z
<p>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):</p>
<p>$ <strong>cat /proc/cupinfo</strong><br/>
cat: /proc/cupinfo: No such file or directory<br/>
$ <strong>^cup^cpu</strong></p>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/956064#956064
4
Answer by qbn for Hidden features of Bash
qbn
2009-06-05T14:10:09Z
2009-06-05T14:10:09Z
<p>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 <code>.inputrc</code> in my home folder.</p>
<pre><code>set completion-ignore-case on
</code></pre>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/956125#956125
4
Answer by lsc for Hidden features of Bash
lsc
2009-06-05T14:23:04Z
2009-06-05T14:23:04Z
<p><strong>Running a command before displaying the bash prompt</strong></p>
<p>Set a command in the "PROMPT_COMMAND" env variable and it will be run automatically before each prompt.
Example:</p>
<pre><code>[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
</code></pre>
<p>For the next april fools, add "export PROMPT_COMMAND=cd" to someone's .bashrc then sit back and watch the confusion unfold.</p>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/956148#956148
4
Answer by Montecristo for Hidden features of Bash
Montecristo
2009-06-05T14:26:39Z
2009-06-05T14:26:39Z
<p>SECONDS=0; sleep 5 ; echo "that took approximately $SECONDS seconds"</p>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/956228#956228
0
Answer by Montecristo for Hidden features of Bash
Montecristo
2009-06-05T14:38:41Z
2009-06-05T14:38:41Z
<p><strong>Changing and executing last command</strong></p>
<pre><code>cd /home/you
^you^me
</code></pre>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/956386#956386
1
Answer by lsc for Hidden features of Bash
lsc
2009-06-05T15:09:53Z
2009-06-05T15:09:53Z
<p><strong>Using 'let' built-in bash command for basic arithmetic</strong></p>
<pre><code>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
</code></pre>
<p>To do floating point evaluations, you can use the "bc" command (no part of bash).</p>
<pre><code>FP=`echo "scale=4; 10 / 3" | bc` # FP="3.3333"
</code></pre>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/960044#960044
0
Answer by qbn for Hidden features of Bash
qbn
2009-06-06T16:13:31Z
2009-06-06T16:13:31Z
<p>These properties are another one of my favorites.</p>
<pre><code>export HISTCONTROL=erasedups
export HISTSIZE=1000
</code></pre>
<p>The first one makes sure bash doesn't log commands more than once, will really improves <code>history</code>'s usefulness. The other expands the history size to 1000 from the default of 100. I actually set this to 10000 on my machines.</p>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/1061412#1061412
2
Answer by Robin for Hidden features of Bash
Robin
2009-06-30T02:04:10Z
2009-06-30T02:04:10Z
<pre><code>ctrl-x ctrl-e
</code></pre>
<p>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.</p>
<p>to use vi as your editor:</p>
<pre><code>export VISUAL=vi
</code></pre>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/1061499#1061499
0
Answer by David Plumpton for Hidden features of Bash
David Plumpton
2009-06-30T02:44:17Z
2009-06-30T02:44:17Z
<p>Easily move around between multiple directories</p>
<p>Not a hidden feature, but much more flexible than pushd which requires stack-like navigation.</p>
<p>a() { alias $1=cd\ $PWD; }</p>
<p>cd somewhere and type "a 1". Later on just typing "1" will return to that directory.</p>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/1063939#1063939
2
Answer by GloryFish for Hidden features of Bash
GloryFish
2009-06-30T14:17:16Z
2009-06-30T14:17:16Z
<p>My favorite:</p>
<pre><code>sudo !!
</code></pre>
<p>Rerun the previous command with sudo.</p>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/1339852#1339852
0
Answer by camh for Hidden features of Bash
camh
2009-08-27T09:14:21Z
2009-08-27T09:14:21Z
<p>One I use a lot is !$ to refer to the last word of the last command:</p>
<pre><code>$ less foobar.txt
...
# I dont want that file any more
$ rm !$
</code></pre>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/1416093#1416093
2
Answer by Adam Liss for Hidden features of Bash
Adam Liss
2009-09-12T20:43:23Z
2009-09-12T20:43:23Z
<h2>Magic key combinations from the bash <code>man</code> pages:</h2>
<ul>
<li><p><kbd>Ctrl</kbd> + <kbd>a</kbd> and <kbd>Ctrl</kbd> + <kbd>e</kbd> move the cursor to the beginning and end of the current line, respectively.</p></li>
<li><p><kbd>Ctrl</kbd> + <kbd>t</kbd> and <kbd>Alt</kbd> + <kbd>t</kbd> transpose the character and word before the cursor with the current one, then move the cursor forward.</p></li>
<li><p><kbd>Alt</kbd> + <kbd>u</kbd> and <kbd>Alt</kbd> + <kbd>l</kbd> convert the current word (from the cursor to the end) to uppercase and lowercase.</p>
<p><strong>Hint:</strong> Press <kbd>Alt</kbd> + <kbd>–</kbd> followed by either of these commands to convert the <em>beginning</em> of the current word. </p></li>
</ul>
<p><br></p>
<h2>Bonus <code>man</code> tips:</h2>
<ul>
<li><p>While viewing <code>man</code> pages, use <kbd>/</kbd> to search for text within the pages. Use <kbd>n</kbd> to jump ahead to the next match or <kbd>N</kbd> for the previous match.</p></li>
<li><p>Speed your search for a particular command or sub-section within the <code>man</code> pages by taking advantage of their formatting:</p>
<p>o Instead of typing <kbd>/history expansion</kbd> to find that section, try <kbd>/^history</kbd>, using the caret (<code>^</code>) to find only lines that <em>begin</em> with "history."</p>
<p>o Try <kbd>/ read</kbd>, with a few leading spaces, to search for that builtin command. Builtins are always indented in the <code>man</code> pages.</p></li>
</ul>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/1416125#1416125
0
Answer by Adam Liss for Hidden features of Bash
Adam Liss
2009-09-12T21:01:46Z
2009-09-12T21:01:46Z
<h2>More magic key combinations:</h2>
<ul>
<li><p><kbd>Ctrl</kbd> + <kbd>r</kbd> 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.</p></li>
<li><p><kbd>Tab</kbd> completes the word you've typed so far if it's unambiguous.</p></li>
<li><p><kbd>Tab</kbd> <kbd>Tab</kbd> lists all completions for the word you've typed so far.</p></li>
<li><p><kbd>Alt</kbd> + <kbd>*</kbd> <em>inserts</em> all possible completions, which is particularly helpful, say, if you've just entered a potentially destructive command with wildcards:</p>
<p><code>rm -r source/d*.c</code> <kbd>Alt</kbd> + <kbd>*</kbd><br>
<code>rm -r source/delete_me.c source/do_not_delete_me.c</code></p></li>
<li><p><kbd>Ctrl</kbd> + <kbd>Alt</kbd> + <kbd>e</kbd> 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:</p>
<p><code>ls $HOME/tmp</code> <kbd>Ctrl</kbd> <kbd>Alt</kbd> + <kbd>e</kbd><br>
<code>ls -N --color=tty -T 0 /home/cramey</code></p></li>
</ul>