运行 nohup 而不发送消息

Ten*_*ris 2 linux bash

嗨,我有一个 bash 脚本并运行这样的过程

nohup $proces &
Run Code Online (Sandbox Code Playgroud)

当我这样做时,scipt 会发送类似的按摩

nohup: appending.. 
Run Code Online (Sandbox Code Playgroud)

有没有办法防止按摩输出?或者是否有替代命令执行相同的操作并且没有发送按摩?

0x5*_*453 5

丢弃所有输出: nohup $process > /dev/null 2>&1 &