kill
Purpose
Section titled “Purpose”Kills a process.
kill [PID/ALL]Arguments
Section titled “Arguments”- PID — specify the programs process ID (PID) you want to close. You can use the ps command to show all running processes
- ALL — close all running programs
Examples
Section titled “Examples”kill 2050Result:
The program with process ID 2050 has been closed.
kill allResult:
All running programs have been closed.