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.
运行带有 -C 标志的脚本时,如何仅重定向 Dtrace 的输出?
就像在这种情况下:
dscript.d -s myscript.d -c date
注意:我在发布之前找到了我的问题的答案,但我把它放在这里,所以它是 SO 的一部分。
管道的一种解决方案是:
dtrace -o /dev/fd/3 -s dscript.d -c date 3>&1 1>out 2>err
其中说:
或者更简单的方法是:
dtrace -o log.txt -s dscript.d -c date