pkill
Kill processes by name (without needing the PID)
pkill sends a signal to all processes matching a name. pkill -HUP nginx reloads all nginx workers. Use with caution since it matches everything with that name.
Example
$ pkill -HUP nginx
(all nginx processes receive SIGHUP)
Tip: Type it yourself in the terminal below - reading is not the same as doing.