mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
6 lines
167 B
Bash
Executable File
6 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
# Kill ghost shells
|
|
|
|
/bin/kill -9 `/bin/ps awux | grep "(sh)" | /usr/bin/grep -v grep | ps awux | grep "(sh)" | grep -v grep | /usr/bin/awk '{ print $2 }'`
|
|
|