mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
5 lines
103 B
Bash
Executable file
5 lines
103 B
Bash
Executable file
#!/bin/sh
|
|
|
|
kill -INT `ps -ax | egrep " ppp " | egrep -v "egrep" | sed 's/^\([ 0-9]*\) .*/\1'/`
|
|
|
|
exit 0
|