Forrest logo
back to context overview

killall

List of commands for killall:

  • killall:ai:8d71f How to restart kscreen process?
    $ killall kscreen
    try on your machine
    explain this command
  • killall:ai:c0d18 Stops all running instances of kdocker
    $ killall kdocker
    try on your machine
    explain this command
  • killall:tldr:44810 killall: Terminate a process using the default SIGTERM (terminate) signal.
    $ killall ${process_name}
    try on your machine
    explain this command
  • killall:tldr:4d007 killall: Force kill a process.
    $ killall -KILL ${process_name}
    try on your machine
    explain this command
  • killall:tldr:76a02 killall: [l]ist available signal names (to be used without the 'SIG' prefix).
    $ killall -l
    try on your machine
    explain this command
  • killall:tldr:9d9d3 killall: Interactively ask for confirmation before termination.
    $ killall -i ${process_name}
    try on your machine
    explain this command
  • killall:tldr:9e2c0 killall: List available signal names (to be used without the 'SIG' prefix).
    $ killall --list
    try on your machine
    explain this command
  • killall:tldr:a56fa killall: Terminate a process using the SIGINT (interrupt) signal, which is the same signal sent by pressing `Ctrl + C`.
    $ killall -INT ${process_name}
    try on your machine
    explain this command
back to context overview