ppp/scripts/plog

8 lines
146 B
Plaintext
Raw Normal View History

2022-05-14 02:43:48 +08:00
#!/bin/sh
if [ -s /var/log/ppp.log ]; then
exec tail "$@" /var/log/ppp.log
else
exec grep ' \(pppd\|chat\)\[' /var/log/syslog | tail "$@"
2022-05-14 02:43:48 +08:00
fi