我必须仅获取特定用户的 USERID、PID、TIME 和 COMMAND。我努力了
ps -u user1
但那个显示 PID TTY TIME CMD
,但我不想要Field TTY。
答案1
使用中指定的“输出格式控制” man ps
,例如
$ ps -u user1 -ouid,pid,time,cmd
我必须仅获取特定用户的 USERID、PID、TIME 和 COMMAND。我努力了
ps -u user1
但那个显示 PID TTY TIME CMD
,但我不想要Field TTY。
使用中指定的“输出格式控制” man ps
,例如
$ ps -u user1 -ouid,pid,time,cmd