|
ptpkillSUT killallDescriptionptpkill kills named processes on given hosts
Command Line Argumentsptpkill [-m <machine_file>|-M <machine_list>] [signal] <pname>
Environment Variables
ExamplesTo kill all processes named 'runaway' on the machines specified in the file "destination_machines" use
ptpkill -m destination_machines runaway To kill the same processes, but specifying the machines on the command line, use
ptpkill -M "host1 host2 host3" runaway To kill the same processes, but specifying the signal 9, use
ptpkill -m destination_machines -9 runaway To kill the same processes, but specifying the signal SIGKILL, use
ptpkill -m destination_machines SIGKILL runaway
NotesThis command simply calls killall(1) on Linux and IRIX. It calls pkill(1) on Solaris. It is unavailable on other systems.
See Alsokillall(1), pkill(1), SUT(1)
|