将sysdig输出写入文件

时间:2018-07-02 13:13:15

标签: bash stdout stderr nohup sysdig

我想检查服务器上的用户命令一段时间,因此我将sysdig命令与nohup一起使用。我想将输出写入这样的文件:

# nohup sysdig -c spy_users 1>>/path/to/true 2>>/path/to/false &

但是结果未实时写入文件。有想法吗?

1 个答案:

答案 0 :(得分:2)

可能正在缓冲中。尝试将缓冲设置为行缓冲或将其完全停用:

nohup stdbuf -oL -eL sysdig -c spy_users 1>>/path/to/true 2>>/path/to/false &