From fbbaaa6f0a2e3ab179be84118ada4a2e423870c8 Mon Sep 17 00:00:00 2001 From: nswinson <67199352+nswinson@users.noreply.github.com> Date: Sat, 20 Jun 2020 10:05:40 -0600 Subject: [PATCH] Update bash.sh --- languages/bash.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/languages/bash.sh b/languages/bash.sh index 0334a06..2f12a4a 100644 --- a/languages/bash.sh +++ b/languages/bash.sh @@ -380,6 +380,7 @@ kill -l # returns a list of all signals on the system, by name and kill PID # terminates process with specified PID kill -s SIGKILL 4500 # sends a signal to force or terminate the process kill -15 913 # Ending PID 913 process with signal 15 (TERM) +kill %1 # Where %1 is the number of job as read from 'jobs' command. ps # prints a line of information about the current running login shell and any processes running under it ps -a # selects all processes with a tty except session leaders