Tech Tip: Use History Expansion To Save Time and Typing
Most shells maintain a history of the commands that you've typed and that history can be used to save time and typing. Most of us have probably used the up/down arrow keys already to move through the list of commands that we've already entered, but there are other ways to access the data in the history list.
Let's say you want to install a package (we'll use a Debian/Ubuntu-based system as an example), so you type:
$ apt-get install packagename
But wait a minute, you need 'sudo' to do that! So what do you do? Retype the entire command again? No, use history expansion and type:
$ sudo !!
This will run the entire last command with 'sudo' prepended to it!
Let's take another example, say you want to list a directory's contents before changing into it, so you use ls to see the directory:
$ ls /usr/share/doc
Now, rather than typing the entire path name again as an argument to cd command, you simply type:
$ cd !$
This takes the last argument from the the last command entered and inserts it in the new command (use !* to include all the arguments from the last command).
Most shells provide many more expansion features that can save time and typing, check your shell's documentation for more information. For bash search for "History Expansion" or "Event Designators".
-- Regards, Matthew Cengia
Trending Topics
| Calculating Day of the Week | May 30, 2012 |
| Hack and / - Password Cracking with GPUs, Part II: Get Cracking | May 29, 2012 |
| Networking Poll | May 29, 2012 |
| OpenLDAP Everywhere Reloaded, Part I | May 23, 2012 |
| Chemistry the Gromacs Way | May 21, 2012 |
| Make TV Awesome with Bluecop | May 16, 2012 |
- Hack and / - Temper Temper
- Calculating Day of the Week
- Hack and / - Password Cracking with GPUs, Part II: Get Cracking
- Validate an E-Mail Address with PHP, the Right Way
- OpenLDAP Everywhere Reloaded, Part I
- RSS Feeds
- Hack and / - Password Cracking with GPUs, Part I: the Setup
- Networking Poll
- Tales From the Server Room: Zoning Out
- Boot with GRUB
- Really nice :-)
Something
3 hours 51 min ago - Have you experimented with
3 hours 53 min ago - Awesome..
4 hours 14 min ago - Good One..
4 hours 33 min ago - Nice One...
4 hours 37 min ago - very good web: ---(
4 hours 40 min ago - very good web: ---(
4 hours 47 min ago - very good web: ---(
4 hours 49 min ago - very good web: ---(
4 hours 53 min ago - very good web: ---(
4 hours 55 min ago





Comments
$_
Even $_ works in same way. However not exactly in same way to the one mentioned in this post but somehow it works.
e.g.
# ls /home/usr/
Now if you want to relist the content of /home/usr directory then you the following:
# ls $_
Always more to learn
Thanks for the information on 'Esc-.'; I hadn't heard about that one, and can't find documentation about it in the Bash manpage!
Shawn did indeed cover (part of) this tech tip in one of his recent videos, so I suppose you could say this serves as a re-cap and elaboration on it (some of which was also mentioned in the comments to Shawn's video) :-).
--
Regards,
Matthew Cengia
alt-.
I use alt-. to cycle last section of previous command. Also; "fc" if I want to edit the entire command and run it again in default editor.
sudo !!
Didn't Shawn Powers just cover this in his tech tips?
Thanks for the tips. Esc-.
Thanks for the tips.
Esc-. will also paste the last command-line argument.