diff --git a/common/pgrep.md b/common/pgrep.md index 497c11c1c0..c82b856c49 100644 --- a/common/pgrep.md +++ b/common/pgrep.md @@ -10,6 +10,14 @@ `pgrep -i {{fireFOx}}` +- search full command line with parameters instead of just the process name + +`pgrep -f "{{ssh root}}"` + +- search for process run by a specific user + +`pgrep -u root {{firefox}}` + - kill all processes which match `pkill -9 {{Finder}}` diff --git a/common/ssh.md b/common/ssh.md index 66e689f283..d029503cdc 100644 --- a/common/ssh.md +++ b/common/ssh.md @@ -13,7 +13,7 @@ - connecting to a remote server with specific port -`ssh {{username}}@{{remote_host}} -P {{2222}}` +`ssh {{username}}@{{remote_host}} -p {{2222}}` - run a command on a remote server