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
Today’s modular x86 servers are compute-centric, designed as a least common denominator to support a wide range of IT workloads. Those generic, virtualized IT workloads have much different resource optimization requirements than hyperscale and cloud applications. They have resulted in a “one size fits all” enterprise IT architecture that is not optimized for a specific set of IT workloads, and especially not emerging hyperscale workloads, such as web applications, big data, and object storage. In this report, you will learn how shifting the focus from traditional compute-centric IT architectures to an innovative disaggregated fabric-based architecture can optimize and scale your data center.
Sponsored by AMD
Built-in forensics, incident response, and security with Red Hat Enterprise Linux 6
Every security policy provides guidance and requirements for ensuring adequate protection of information and data, as well as high-level technical and administrative security requirements for a system in a given environment. Traditionally, providing security for a system focuses on the confidentiality of the information on it. However, protecting the data integrity and system and data availability is just as important. For example, when processing United States intelligence information, there are three attributes that require protection: confidentiality, integrity, and availability.
Learn more about catching the bad guy in this free white paper.
Sponsored by DLT Solutions
| Making Linux and Android Get Along (It's Not as Hard as It Sounds) | May 16, 2013 |
| Drupal Is a Framework: Why Everyone Needs to Understand This | May 15, 2013 |
| Home, My Backup Data Center | May 13, 2013 |
| Non-Linux FOSS: Seashore | May 10, 2013 |
| Trying to Tame the Tablet | May 08, 2013 |
| Dart: a New Web Programming Experience | May 07, 2013 |
- RSS Feeds
- New Products
- Making Linux and Android Get Along (It's Not as Hard as It Sounds)
- Drupal Is a Framework: Why Everyone Needs to Understand This
- Home, My Backup Data Center
- A Topic for Discussion - Open Source Feature-Richness?
- What's the tweeting protocol?
- Dart: a New Web Programming Experience
- Developer Poll
- May 2013 Issue of Linux Journal: Raspberry Pi
- Reply to comment | Linux Journal
1 hour 10 min ago - Reply to comment | Linux Journal
3 hours 43 min ago - Reply to comment | Linux Journal
5 hours 18 sec ago - great post
5 hours 35 min ago - Google Docs
5 hours 57 min ago - Reply to comment | Linux Journal
10 hours 46 min ago - Reply to comment | Linux Journal
11 hours 32 min ago - Web Hosting IQ
13 hours 6 min ago - Thanks for taking the time to
14 hours 43 min ago - Linux is good
16 hours 41 min ago
Enter to Win an Adafruit Prototyping Pi Plate Kit for Raspberry Pi

It's Raspberry Pi month at Linux Journal. Each week in May, Adafruit will be giving away a Pi-related prize to a lucky, randomly drawn LJ reader. Winners will be announced weekly.
Fill out the fields below to enter to win this week's prize-- a Prototyping Pi Plate Kit for Raspberry Pi.
Congratulations to our winners so far:
- 5-8-13, Pi Starter Pack: Jack Davis
- 5-15-13, Pi Model B 512MB RAM: Patrick Dunn
- Next winner announced on 5-21-13!
Free Webinar: Linux Backup and Recovery
Most companies incorporate backup procedures for critical data, which can be restored quickly if a loss occurs. However, fewer companies are prepared for catastrophic system failures, in which they lose all data, the entire operating system, applications, settings, patches and more, reducing their system(s) to “bare metal.” After all, before data can be restored to a system, there must be a system to restore it to.
In this one hour webinar, learn how to enhance your existing backup strategies for better disaster recovery preparedness using Storix System Backup Administrator (SBAdmin), a highly flexible bare-metal recovery solution for UNIX and Linux systems.



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.