Bash logo

How to display longer username in ps

Display full username in ps. The ps output truncates usernames to 7 characters and a +. If you need full usernames in Bash ps, here is how.

Home » How to display longer username in ps

Have you ever had the need to show the full username in ps output? Here is how. Normally in Bash, the ps output truncates an username to 7 characters and a + sign, e.g IUSR_60+. In cases when you absolutely need the full username in ps, this can be pretty annoying. Here is how to display longer usernames in ps:

Display full username in ps: The ps output truncates usernames to 7 characters and a +. If you need full usernames in Bash ps, here is how.

To display 20 characters, use “user:20“:

ps axo user:20

If you also want the PID of the running process, add “,pid: ps axo user:20,pid“. You can even add “pmem” of memory:

ps axo user:20,pid,pmem

Play with it, learn the different options and use what’s best in each case.

One-time donation

Please take a second to support Sysadmins of the North and donate, your generosity helps!

See also  Delete all MAILER-DAEMON emails in Postfix queue
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments