#!/bin/sh # may 2005 by Nab # . /etc/chat.pwd if [ "$#" -eq 0 ]; then echo -n "Usage: $0 [ISPName] Commands [Commands.....] ISPName : installed internet provider (default current)" control else case "$1" in force|unforce|block|unblock|up|down|debug|delay-quit|quit|reset|queue);; *) [ "$ISPNAME" != $1 ] && mode dialup $1 shift ;; esac while [ "$1" ] do if [ "$1" = debug ]; then control $1 $2 shift else control $1 fi shift done fi