blob: 84d2c7340cc64cd4f86ffa9af87504c8055b9c03 [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001#!/bin/sh
2
3if [ -s /var/log/ppp.log ]; then
4 exec tail "$@" /var/log/ppp.log
5else
6 exec tail "$@" /var/log/syslog | grep ' \(pppd\|chat\)\['
7fi