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.
是否有任何命令/参数可以让我知道该过程已经工作了多长时间?我试图在命令ps和top中搜索某些内容,但没有找到。
对于您希望(或接受)在其结束后收集其时间的进程,只需使用该time命令。它可以作为一个独立的命令使用,通常也可以作为一个内置的 shell。
time
$ time sleep 5 real 0m5.028s user 0m0.000s sys 0m0.000s
对于仍在运行的进程,请查看ps的格式化选项。
ps
$ ps -o time,etime 1
确切的选项名称可能因系统而异,请务必查看您的ps手册。