terminate

kill process with given id


Parameters

terminate id :integer

Returns

  • :nothing

Examples

copy
; terminate an external process by PID terminate 12345 ; for tasks spawned via `execute.async`, prefer `cancel`: t: execute.async "someLongRunningCommand" pause 5000 cancel t

Related