mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 15:44:04 +01:00
6 lines
103 B
Bash
Executable File
6 lines
103 B
Bash
Executable File
#!/bin/sh
|
|
|
|
kill -INT `ps -ax | egrep " ppp " | egrep -v "egrep" | sed 's/^\([ 0-9]*\) .*/\1'/`
|
|
|
|
exit 0
|