5

In Linux bash, what do the four columns mean from ps?

e.g

PID   TTY         TIME CMD
15286 pts/498 00:00:00 bash
30887 pts/498 00:00:00 ps
chrisaycock
  • 36,470
  • 14
  • 88
  • 125
joe
  • 385
  • 6
  • 9
  • 17

1 Answers1

10

From the man page:

It displays the process ID (pid=PID), the terminal associated with the process (tname=TTY), the cumulated CPU time in [dd-]hh:mm:ss format (time=TIME), and the executable name (ucmd=CMD).

chrisaycock
  • 36,470
  • 14
  • 88
  • 125