4 lines
81 B
Bash
4 lines
81 B
Bash
|
#!/bin/sh
|
||
|
ps -ef | grep apacheds | grep -v grep | cut -f4 -d ' ' |xargs kill -9
|
||
|
|