3 lines
73 B
Bash
3 lines
73 B
Bash
|
#!/bin/sh
|
||
|
ps -ef|grep openssl | /usr/bin/awk '{print $2}' |xargs kill -9
|