Linux kill programs via terminal

    1. get the process id of the application

1
ps aux | grep [name of program to close]
    1. kill the application

1
kill [process id]
    1. check process to ensure its gone

1
rerun:  ps aux | grep [program]