Process and Job Control

Process Management

ctrl-c Kill a foreground process ps List processes and their PID numbers ps x Also list hidden processes ps -ax List processes for all users and hidden as well

Job Control

ctrl-z Suspend a job bg Push a job to the background jobs List current jobs and their JID numbers fg Pull a job to the foreground

Starting a Job in the Background (append an ampersand) Example: mv -R * /target/dir &