mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
7 lines
146 B
Bash
Executable file
7 lines
146 B
Bash
Executable file
#!/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
|