PS command in Linux
PS command in Linux
In Linux, PS command let you about the active and running process.
To Display current running process in terminal
$ ps
To Display All running processes
$ ps -A
To Display running processes of specific User
$ ps -u <username>
To Display running processes in BSD format
$ ps -au
To Display running process with User, Time and Command
$ ps -aux
To Display running processes of group
$ ps -fG <group-name>