pppdown
来自「unix and linux net driver」· 代码 · 共 19 行
TXT
19 行
#!/bin/sh## This script fill find processes with 'pppd' in the name # and send them SIGINT. It must be run suid root to work# correctly. Some people don't like suid root shell scripts.# In that case, check out the example pppkill.c which contains a# C program that does the same thing. This might be a bit safer# to make suid root.## Note: there is the potential that this script can kill more than# one process. Maybe even an incorrect process. It could # probably be done better.#PATH=/usr/ucb:/bin:/usr/bin:/etc:/usr/etc:/usr/local/bin; export PATHkill -INT `ps -ax | egrep "(pppd)" | egrep -v "egrep" | sed 's/^\([ 0-9]*\) .*/\1'/`exit 0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?