mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-26 14:52:11 +08:00
8 lines
146 B
Plaintext
8 lines
146 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ -s /var/log/ppp.log ]; then
|
||
|
exec tail "$@" /var/log/ppp.log
|
||
|
else
|
||
|
exec tail "$@" /var/log/syslog | grep ' \(pppd\|chat\)\['
|
||
|
fi
|