Answers for "ps -aux command in linux"

1

ps -aux command in linux

# ps (Process Status)
# Syntax : ps [options]
# [options] can be -a, -A, -d, -e etc.

# Ex- ps -aux : print all processes owned by a user named "x"
# -a : Information for all processes associated with terminals.
# -u : Information for processes in userlist.
# -x : username (user running this command)
Posted by: Guest on May-02-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language