6 lines
97 B
Bash
Executable File
6 lines
97 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
ps -ef|grep -i crawler|grep -v grep|awk '{print $2}'|xargs kill -9
|