From f595927e1b476401ad7040036af73d2c2b02fac6 Mon Sep 17 00:00:00 2001 From: nick Date: Tue, 21 Aug 2018 11:18:50 +0800 Subject: [PATCH] :pencil2: update --- other.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/other.md b/other.md index 04d42d2..8055d56 100644 --- a/other.md +++ b/other.md @@ -184,7 +184,7 @@ ls /usr | sort #排序 #### nohup 命令 ``` -nohup node app.js & #将执行的结果不显示并在后台运行,默认会在执行命令当前目录插件 nohup.out ,如果 nohup.out 文件没有写入权限,会在 ~ 目录下新建 +nohup node app.js & #将执行的结果不显示并在后台运行,默认会在执行命令当前目录创建 nohup.out ,如果 nohup.out 文件没有写入权限,会在 ~ 目录下新建 nohup node app.js > demo.txt 2>&1 & #同上,指定写入文件名 ```