Update linuxshell.md

Mis-spellings:nohub-->nohup
This commit is contained in:
qhhndaye888
2020-04-10 10:44:37 +08:00
committed by labuladong
parent 943422cc47
commit 097abb2663

View File

@ -85,10 +85,10 @@ $ logout
类似的,还有一种后台运行常用的做法是这样:
```shell
$ nohub some_cmd &
$ nohup some_cmd &
```
`nohub`命令也是类似的原理,不过通过我的测试,还是`(cmd &)`这种形式更加稳定。
`nohup`命令也是类似的原理,不过通过我的测试,还是`(cmd &)`这种形式更加稳定。
### 三、单引号和双引号的区别