linux命令之nohup
1.nohup介绍
linux命令nohup(简称:no hang up)是用于在系统后台不挂断地运行要执行的命令,其默认输出在$HOME/nohup.out
2.nohup用法
nohup command [arg...] [&]
command:要执行的命令
arg:参数,例如:可以指定输出文件
&:让命令在服务器后台执行,即使终端退出后,命令仍旧执行
3.实例
3.1.在服务器后台执行urandom.sh
urandom.sh
[root@rhel77 ~]# cat urandom.sh
!/bin/bash
while true;
do
tr -dc '_a-zA-Z0-9' </dev/urandom | head -c 5
echo
sleep 4
done
命令:
nohup sh /root/urandom.sh &
[root@rhel77 ~]# nohup sh /root/urandom.sh &
[1] 4566
[root@rhel77 ~]# nohup: ignoring input and appending output to ‘nohup.out’
[root@rhel77 ~]# ps -ef | grep urandom
root 4566 1930 0 09:05 pts/0 00:00:00 sh /root/urandom.sh
[root@rhel77 ~]# cat nohup.out
xbF1Q
fimsX
xIdDt
WOl4Z
R73Ur
Im_GN
PlmFu
i_x_A
0ax2F
T5M6R
pA3ug
bW2Zq
WXUtM
5D8QM
EruPW
XfJCQ
5dY_n
ITZQQ
uSzQM
rWKm3
SQc6C
P6_qC
SpstK
5eSPp
ZW_MI
8R7Fy
xJ2o4
Ji2Q0
3o3c8
9T_0u
dWo2k
[root@rhel77 ~]#
3.2.nohup执行urandom.sh,并自定义重定向
命令:
nohup sh /root/urandom.sh > urandom.log 2>&1 &
[root@rhel77 ~]# ps -ef |grep urandom
root 4566 1930 0 09:05 pts/0 00:00:00 sh /root/urandom.sh
root 4796 1930 0 09:08 pts/0 00:00:00 grep --color=auto urandom
[root@rhel77 ~]# kill -9 4566
[root@rhel77 ~]# nohup sh /root/urandom.sh > urandom.log 2>&1 &
[2] 4817
[1] Killed nohup sh /root/urandom.sh
[root@rhel77 ~]# ps -ef |grep urandom
root 4817 1930 0 09:09 pts/0 00:00:00 sh /root/urandom.sh
root 4828 1930 0 09:09 pts/0 00:00:00 grep --color=auto urandom
[root@rhel77 ~]# cat urandom.log
nohup: ignoring input
YDOUG
SuZFy
ERSK2
QRplg
kakyY
[root@rhel77 ~]#
————————————————
版权声明:本文为CSDN博主「小黑要上天」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/z19861216/article/details/132201551