我正在运行 OpenSSL 脚本。如何获取 % CPU 和 % 内存?通常我top
在其他终端中使用命令。top
正在返回 % CPU 和 % 内存,但记下来需要时间。还有其他选择吗?
答案1
您time
也可以使用命令来实现此目的:)
command time -f "\nElapsed: %E \nUser: %U \nSystem: %S \nMemory: %M\n" [your command/script here] 1> /dev/null
你top
可以做类似的事情:
top -p [pid of your process] -b > log
例如:
top -p `pidof openssl` -b > log