/proc目录脚本
我正在寻找一个 ruby 脚本,该脚本可以访问 /proc
目录并将进程 ID 和命令行 (cmdline
) 信息保存在文件中。
I'm looking for a ruby script that accesses the /proc
directory and saves the process ID and command line (cmdline
) information in a file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能想调用
ps
而不是转到/proc
。you may want to call
ps
instead of going to/proc
.您还可以在一个 liner bash 脚本下面运行并将其输出重定向到任何地方,以及为 head 命令选择所需的参数选项。
you can also run below one liner bash script and redirect its output anywhere, as well as choose required argument option for head command.