运行shell命令,不要等待返回

时间:2013-12-18 23:49:36

标签: linux bash shell

是否可以开始执行命令而不是在继续之前等待它返回。

commands
/usr/sbin/thing.sh    <-- Don't wait for this to return.
more commands

2 个答案:

答案 0 :(得分:17)

命令之间的单个&符号将使每个符号独立运行,而不依赖于之前的成功命令。

答案 1 :(得分:1)

hydrogen:tmp phyrrus9$ cat shell.sh 
#! /bin/sh

echo hello
sleep 15 &
echo world
hydrogen:tmp phyrrus9$ ./shell.sh 
hello
world
hydrogen:tmp phyrrus9$ ps -a
PID   TTY        TIME    CMD
12158 ttys000    0:00.92 login -pf phyrrus9
12159 ttys000    0:00.22 -bash
12611 ttys000    0:00.00 sleep 15
12612 ttys000    0:00.01 ps -a

附加&amp;到命令的末尾。经过测试:

Darwin hydrogen.local 13.0.0 Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64 x86_64