Send termination signals to running processes identified by PID. Supports graceful shutdown (SIGTERM) and forceful termination (SIGKILL).
kill-tool [options] <pid>
-15 (SIGTERM): Graceful termination - default-9 (SIGKILL): Force kill - immediate stop-2 (SIGINT): Interrupt - like Ctrl+C-1 (SIGHUP): Hangup - reload config-l: List all available signal names# Graceful termination
kill-tool 1234
# Force kill
kill-tool -9 5678
# List all signals
kill-tool -l
共 1 个版本