Difference between Bash Nohup and &
This short article introduces the nohup command and &
the control operator to run Linux processes in the background through Bash. In addition, we will further study &
the key differences between nohup and .
Running Linux Processes in the Background
Linux provides two ways to run processes or commands in the background.
-
Use only the ampersand (
&
) control operator. -
Use the nohup command
&
with .
The & symbol (&) control operator
We can use the & control operator to run any command asynchronously in the background.
Consider the following command.
sleep 10
sleep
command to add a delay of a specific time. When we run the sleep 10 command, it will pause the Bash terminal for 10 seconds and we cannot run any other command on the terminal.
Now, consider the following command.
sleep 10 &
The above command displays the process id (PID) and sleep 10 is executed asynchronously in the background. The execution control returns to the command terminal without waiting for the sleep to end.
Now, we can run any other command concurrently with the background sleep command on the same terminal.
We can move the background process to foreground using the following command.
fg
nohup Command
nohup
command to run any other command or process. It stands for "no hang-up" and it prevents the associated process from getting the SIGHUP signal.
If you want the command to execute even after the terminal is closed, you can use nohup CommandName.
However, if we want to run a command in the background and the execution control returns immediately to the terminal, we have to use the following command.
nohup sleep 10 &
The above command runs the sleep 10 command in the background and returns the control immediately so that we can run any other command on the same terminal.
We can use the pgrep command to view the commands running in the background, as follows:
pgrep -a [Command]
pgrep
Command Search for a command and display the process ID (PID) and details of the command being executed.
For example, pgrep -a sleep
the relevant background processes are displayed as:
PID sleep 10
Here, PID represents the process ID assigned to the sleep command.
Difference between the control operator & and the nohup command
Following are some of the differences between using &
and to run a command or process in the background.nohup
nohup can catch the hangup signal (SIGHUP), while & cannot. The SIGHUP signal is used to send a signal to a process when the terminal in which the process was started is closed.
Typically, a process or command is run in the background using & until there is a shell from which the command or process was launched. Once the shell terminates, all associated commands or processes running in the background with & will also terminate.
When the terminal exits, SIGHUP (kill SIGHUP <pid>)
the hangup signal used will terminate all subcommands or subprocesses of the terminal. However, this can be prevented using nohup.
The nohup command captures the SIGHUP signal and does not let it reach the actual command, thus limiting the command to terminate when the Bash terminal exits.
&
Another difference between and nohup
is regarding the redirection of stdout/stderr.
&
The operator does not automatically redirect stdout/stderr, but displays the command's output directly to the terminal. However, nohup redirects stdout/stderr to the file nohup.out located in $HOME.
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
String comparison in batch files
Publish Date:2025/03/22 Views:167 Category:OPERATING SYSTEM
-
A string is an ordered collection of characters. You can compare strings using conditional commands in batch files, namely, if, if-else, and for commands. Strings may contain spaces and special characters, which can cause errors in the batc
Remove double quotes from variable in batch file
Publish Date:2025/03/22 Views:177 Category:OPERATING SYSTEM
-
In batch files, variables containing multiple words or spaces must be placed in double quotes, but sometimes, we do not want to see these quotes in the output. These quotes can be removed from the variables in batch files. There are many wa
Reading file into variable in batch script
Publish Date:2025/03/22 Views:120 Category:OPERATING SYSTEM
-
Sometimes, we need to put the entire contents of a file into a variable for various purposes, such as finding specific data from a file, replacing a specific part of a file, etc. In Batch, it is very easy to put the entire file contents in
Print a file after skipping first X lines in Bash
Publish Date:2025/03/22 Views:186 Category:OPERATING SYSTEM
-
Suppose you have a file, a large file, and you want to display its contents. How would you do it? You obviously don't want to print out the entire contents of the file, as that's not very practical. You might want to print some selective li
Get the Primary IP Address in Linux
Publish Date:2025/03/22 Views:70 Category:OPERATING SYSTEM
-
There are various ways to get network details in Linux. We will learn some of them in this article. This simple guide is all about using different commands that can be used to get the primary IP address in Linux operating system using Bash
Bash History Size
Publish Date:2025/03/22 Views:189 Category:OPERATING SYSTEM
-
In this article, we will learn about Bash history, its size, and how we can change our history size and handle limits. Before getting into our topic, let us first understand why we need history in Bash shell and how we can get it. Most deve
Find Current Folder Name in Bash
Publish Date:2025/03/22 Views:106 Category:OPERATING SYSTEM
-
Finding a directory is very easy through Bash scripting. But finding the exact directory folder name you are in right now is a bit complicated. This article will introduce three methods to find the folder name from this article directory. I
Changing Directories in Bash
Publish Date:2025/03/22 Views:75 Category:OPERATING SYSTEM
-
In this article, we will learn how to change directories in Bash. The term directory is used to refer to a folder. Because you frequently move between folders when using Bash and when using the Git version control system, it is essential to
Running Regular Expressions in Case Statements in Bash
Publish Date:2025/03/22 Views:75 Category:OPERATING SYSTEM
-
This article explores regular expressions, their basic syntax, and how to run them in Bash using case and if-else constructs. Introduction to Regular Expressions A regular expression, also called regex or regexp, is a sequence of characters