Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的服务器上检查我的用户命令一段时间,所以我使用带有 nohup 的 sysdig 命令。我想将输出写入这样的文件:
# nohup sysdig -c spy_users 1>>/path/to/true 2>>/path/to/false &
但结果不会实时写入文件。任何想法?
可能它正在被缓冲。尝试将缓冲设置为 line-buffer 或完全停用它:
nohup stdbuf -oL -eL sysdig -c spy_users 1>>/path/to/true 2>>/path/to/false &