
kill
List of commands for kill:
-
kill:tldr:23e73 kill: Terminate a background job.$ kill %${job_id}try on your machineexplain this command
-
kill:tldr:63124 kill: List available signal names (to be used without the `SIG` prefix).$ kill -ltry on your machineexplain this command
-
kill:tldr:9feed kill: Terminate a program using the default SIGTERM (terminate) signal.$ kill ${process_id}try on your machineexplain this command
-
kill:tldr:d2425 kill: Send a `SIGUSR1` signal to all processes with the given GID (group id).$ kill -${SIGUSR1} -${group_id}try on your machineexplain this command
-
kill:tldr:ecb48 kill: Terminate a program using the SIGHUP (hang up) signal. Many daemons will reload instead of terminating.$ kill -${select} ${process_id}try on your machineexplain this command