touch /tmp/debug.log
LD_DEBUG=all LD_DEBUG_OUTPUT=/tmp/debug.log ls
完成此操作后,我希望将调试信息写入文件/tmp/debug.log
,但它是空的。
Ubuntu 20.04
touch /tmp/debug.log
LD_DEBUG=all LD_DEBUG_OUTPUT=/tmp/debug.log ls
完成此操作后,我希望将调试信息写入文件/tmp/debug.log
,但它是空的。
Ubuntu 20.04
环境
LD_*
变量在手册页中有描述ld.so(8)
。对于
LD_DEBUG_OUTPUT
,它说:因此,如果您运行了问题中指定的命令,并且该
ls
命令的进程 ID (PID) 恰好是 12345,那么输出将在名为 的文件中/tmp/debug.log.12345
。