Package Exports
- serialkiller
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (serialkiller) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
SerialKiller

SerialKiller is a process kill tool for Unix/Linux environment.
Installation
npm i -g serialkillerIn general
ps -ef | grep <processname>
kill <option> <pid>
Serial killer
serialkiller <option> <processname>Usage
Serialkiller is a pure javascript cli tool
Commands:
$serialkiller --help
$serialkiller --version
$serialkiller <option> <processname>
or
$serialkiller <processname>
options for the serialkiller are same as options for kill Commands
1 HUP (hang up)
2 INT (interrupt)
3 QUIT (quit)
6 ABRT (abort)
9 KILL (non-catchable, non-ignorable kill)
14 ALRM (alarm clock)
15 TERM (software termination signal)
Example:
$serialkiller 9 tomcat
or
$serialkiller KILL tomcat
or
$serialkiller tomcat