标签: macos unix fileoutputstream
如何将top中包含的数据 - 在Macintosh终端会话中 - 推送到名为file.txt的文件中?
top
file.txt
答案 0 :(得分:0)
在OSX上,要将top命令的输出捕获到名为file.txt的文件,请使用以下语法:
top -l 1 > file.txt
(已更新以反映OSX top命令的不同语法。有关所有选项,请参阅http://ss64.com/osx/top.html。)