Skip to content

Instantly share code, notes, and snippets.

@dtuite
Created January 11, 2012 02:29
Show Gist options
  • Save dtuite/1592618 to your computer and use it in GitHub Desktop.
Save dtuite/1592618 to your computer and use it in GitHub Desktop.
Unix command to list all running processes and daemons
ps -aef | awk "{if ( \$3 == 1 ) { print \$_ }}"
@dtuite
Copy link
Author

dtuite commented Jan 11, 2012

Taken from here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment