#!/bin/sh
n="r"
while  [ "$n" = "r" ]
do
/usr/sbin/pppd call gprsmm
n="q"
echo "Exit status is $?"
echo "DISCONNECTED"
echo ""
echo "Press ENTER to quit"
echo "Press r ENTER to reconnect/try again"
read n
done
