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我正在使用各种命令显示有关当前进程的信息:
ps
ps -eo pid,start,stime,command
如何按开始对这些结果进行排序?
我已经阅读man ps并尝试过-m,-r以及-v排序选项。不幸的是,我无法使用这些选项按开始排序。
man ps
-m
-r
-v
你用etime. 那是经过的时间,以天,小时等为单位,适合数字排序。如果它是第一列,我认为 ps 会自动按它排序。
etime
否则,您可以使用 覆盖排序顺序--sort,但请确保它位于-o选项之后,例如:
--sort
-o
ps -o pid,user:32,start,etime,state,time,vsz,args --sort=etime