8 Mysterious Ways to Use the (!) Operator in Linux Commands
Jun 17, 2025 pm 01:59 PMThe '!'
symbol or operator in Linux can be used as a Logical Negation operator as well as to fetch commands from history with tweaks or to run previously executed commands with modification.
Most of the following Linux commands usage with '!'
symbol can vary between different shells. While the examples I provided are commonly used in the bash shell, some other Linux shells may have different implementations or may not support certain uses of the ‘!’ symbol at all.
Let’s dive into the amazing and mysterious uses of '!'
symbol or operator in Linux commands.
Table of Contents
1. Run a Command from History Using Command Numbers
You might not be aware of the fact that you can run a command from your history command (already/earlier executed commands). To get started first, find the command number by running the ‘history‘ command.
$ history
To run a command from history by its command number, you can use the '!'
symbol followed by the command number as shown.
$ !1551
When you execute the above command, it will run the top command at line number 1551 from your history.
Please note that the actual command number may vary depending on your command history. You can use the history command to view the list of commands along with their line numbers.
2. Run Previously Executed Commands in Linux
You may run those commands which you have run previously by their running sequence the last run command will be represented as -1, the second last as -2, the seventh last as -7, and so on.
For example, if you want to rerun the command that was executed six, eight or tenth commands ago, you can use the !-n
, where n
is the number of commands back you want to reference.
$ history $ !-6 $ !-8 $ !-10
3. Pass Previous Command’s Arguments to New Command
I need to list the content of the directory ‘/home/$USER/Binary/firefox‘ so I fired.
$ ls /home/$USER/Binary/firefox
Then I realized that I should have fired ‘ls -l‘ to see which file is executable there. So should I type the whole command again? No, I don’t need it. I just need to carry the last argument to this new command as:
$ ls -l !$
Here !$
will carry arguments passed in the last command to this new command.
4. How to Handle Two or More Arguments in Commands
Let’s say I created a text file 1.txt on the Desktop.
$ touch /home/avi/Desktop/1.txt
and then copy it to ‘/home/avi/Downloads‘ using the complete path on either side with the cp command.
$ cp /home/avi/Desktop/1.txt /home/avi/downloads
Now we have passed two arguments with the cp command. First is ‘/home/avi/Desktop/1.txt‘ and the second is ‘/home/avi/Downloads‘, let’s handle them differently, just execute echo [arguments]
to print both arguments differently.
$ echo “1st Argument is : !^” $ echo “2nd Argument is : !cp:2”
Note 1st argument can be printed as “!^”
and the rest of the arguments can be printed by executing “![Name_of_Command]:[Number_of_argument]”
.
In the above example, the first command was ‘cp‘ and 2nd argument was needed to print. Hence “!cp:2”
, if any command says xyz is run with 5 arguments and you need to get the 4th argument, you may use “!xyz:4”
, and use it as you like. All the arguments can be accessed by “!*”
.
5. Run Last Commands Based on Specific Keywords
We can execute the last executed commands on the basis of keywords. We can understand it as follows:
$ ls /home > /dev/null [Command 1] $ ls -l /home/avi/Desktop > /dev/null [Command 2] $ ls -la /home/avi/Downloads > /dev/null [Command 3] $ ls -lA /usr/bin > /dev/null [Command 4]
Here we have used the ls command but with different switches and for different folders. Moreover, we have sent to the output of each command to ‘/dev/null‘ to keep the console clean.
Now execute the last run commands on the basis of keywords.
$ ! ls [Command 1] $ ! ls -l [Command 2] $ ! ls -la [Command 3] $ ! ls -lA [Command 4]
Check the output and you will be astonished that you are running already executed commands just by ls
keywords.
6. Repeat Last Executed Command in Linux
You can run/alter your last executed command using (!!)
operator, which is a shorthand notation that allows you to refer to the previous command executed in the command line.
For example, last day I run a one-liner script to find out the IP address of the Linux machine.
$ ip addr show | grep inet | grep -v 'inet6'| grep -v '127.0.0.1' | awk '{print $2}' | cut -f1 -d/
Then suddenly I figured out that I need to redirect the output of the above script to a file ip.txt, so what should I do? Should I retype the whole command again and redirect the output to a file? Well, an easy solution is to use UP
navigation key and add '> ip.txt'
to redirect the output to a file.
$ ip addr show | grep inet | grep -v 'inet6'| grep -v '127.0.0.1' | awk '{print $2}' | cut -f1 -d/ > ip.txt
Thanks to the Life Savior UP
navigation key here. Now consider the below condition, the next time I run the below one-liner script.
$ ifconfig | grep "inet addr:" | awk '{print $2}' | grep -v '127.0.0.1' | cut -f2 -d:
As soon as I run the script, the bash prompt returned an error with the message “bash: ifconfig: command not found”, it was not difficult for me to guess I run this command as a user where it should be run as root.
So what’s the solution? it is difficult to log in to root and then type the whole command again! Also (UP Navigation Key) in the last example didn’t come to the rescue here. So? we need to call “!!”
without quotes, which will call the last command for that user.
$ su -c “!!” root
Here su is the switch user which is the root, -c
is to run the specified command as the user and the most important part !!
will be replaced by command and the last run command will be substituted here. Yeah! You need to provide a root password.
7. Remove Files Except One File Using ‘!’ Operator
In Linux, the !
operator (known as the “bang” operator) is used for history expansion that allows you to refer to previous commands in your command history and perform various operations with them.
To remove all files from a directory except for a specific file (important_file.txt), you can use the rm command with !
operator as shown.
$ rm !(important_file.txt)
To remove all the file types from the folder except the one the extension of which is ‘.pdf
‘.
$ $ rm !(*.pdf)
8. Check If a Directory Exists in Linux
Here we will use '! -d'
to validate if the directory exists or is not followed by Logical AND Operator (&&)
to print that directory does not exist and Logical OR Operator (||)
to print the directory is present.
Logic is, when the output of [ ! -d /home/avi/Tecmint ]
is 0, it will execute what lies beyond Logical AND else it will go to Logical OR (||)
and execute what lies beyond Logical OR.
$ [ ! -d /home/avi/Tecmint ] && printf '\nno such /home/avi/Tecmint directory exist\n' || printf '\n/home/avi/Tecmint directory exist\n'
Similar to the above condition, but here if the desired directory doesn’t exist it will exit the command.
$ [ ! -d /home/avi/Tecmint ] && exit
A general implementation in scripting language where if the desired directory does not exist, it will create one.
[ ! -d /home/avi/Tecmint ] && mkdir /home/avi/Tecmint
That’s all for now. If you know or come across any other use of '!'
which is worth knowing, you may like to provide us with your suggestion in the feedback. Keep connected!
The above is the detailed content of 8 Mysterious Ways to Use the (!) Operator in Linux Commands. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

There are three ways to create empty files in the command line: First, the simplest and safest use of the touch command, which is suitable for debugging scripts or placeholder files; Second, it is quickly created through > redirection but will clear existing content, which is suitable for initializing log files; Third, use echo"> file name to create a file with an empty string, or use echo-n""> file name to avoid line breaks. These three methods have their own applicable scenarios, and choosing the right method can help you complete the task more efficiently.

Are you looking for good software to write mathematical equations? If so, this article provides the top 5 equation editors that you can easily install on your favorite Linux distribution.In addition to being compatible with different types of mathema

Eclipse is a free integrated development environment (IDE) that programmers around the world use to write software, primarily in Java, but also in other major programming languages using Eclipse plugins.The latest release of Eclipse IDE 2023?06 does

Linux administrators should be familiar with the command-line environment. Since GUI (Graphical User Interface) mode in Linux servers is not commonly installed.SSH may be the most popular protocol to enable Linux administrators to manage the servers

Linux has a rich collection of commands, and while many of them are powerful and useful for various tasks, there are also some funny and whimsical commands that you can try out for amusement. 1. sl Command (Steam Locomotive) You might be aware of the

LXD is described as the next-generation container and virtual machine manager that offers an immersive for Linux systems running inside containers or as virtual machines. It provides images for an inordinate number of Linux distributions with support

PPA is an important tool for Ubuntu users to expand their software sources. 1. When searching for PPA, you should visit Launchpad.net, confirm the official PPA in the project official website or document, and read the description and user comments to ensure its security and maintenance status; 2. Add PPA to use the terminal command sudoadd-apt-repositoryppa:/, and then run sudoaptupdate to update the package list; 3. Manage PPAs to view the added list through the grep command, use the --remove parameter to remove or manually delete the .list file to avoid problems caused by incompatibility or stopping updates; 4. Use PPA to weigh the necessity and prioritize the situations that the official does not provide or require a new version of the software.

Gogo is a remarkable tool to bookmark directories inside your Linux shell. It helps you create shortcuts for long and complex paths in Linux. This way, you no longer need to type or memorize lengthy paths on Linux.For example, if there's a directory
