Process monitoring
ps
ps(1) - Linux manual page - Report a snapshot of the current processes.
ps auxtop
top(1) - Linux manual page - Display Linux tasks
toppspy
GitHub - DominicBreuker/pspy - Monitor linux processes without root permissions
pspy64psmonitor.sh
Monitor process changes
#!/bin/bash
IFS=$'\n'
op=$(ps -eo command)
while true; do
    np=$(ps -eo command)
    diff <(echo "$op") <(echo "np")
    sleep 1
    op=$np
doneLast updated