Send the kill signal to a Plan9k process by PID.
- Repository:
opencomputers - System:
plan9k - Type:
command
OpenComputers/src\main\resources\assets\opencomputers\loot\plan9k\bin\kill.lua
kill PIDConvert the single argument to a numeric PID and call os.kill(pid, "kill"). If the PID is invalid or the signal cannot be delivered, the command raises an error.
PID: Numeric process identifier to terminate.
kill 42Request termination of process 42.
- This implementation always sends the literal
killsignal and does not support alternate signal names.