ps -aux command in linux

Shell
# 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)
Source

Also in Shell: