Unix commands
list all processes and filter by name
ps axwwu | grep -i php
display number of processes which belong to the same app
pidof code | wc -w
kill all processes generated by the same app
killall php
ps axwwu | grep -i php
pidof code | wc -w
killall php