home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / utilities / utilsf / gsm / GSM / callpager next >
Encoding:
Text File  |  1995-06-05  |  360 b   |  23 lines

  1. #! /sbin/sh
  2.  
  3. srcdir=/usr/local/src/GSM
  4.  
  5. devfile=cua
  6.  
  7. devpath=/dev/$devfile
  8. lockfile=LCK..$devfile
  9.  
  10. if [ `ls /usr/spool/pager | wc -l` != 0 ];
  11. then
  12. (
  13. /bin/stty -tostop pass8 clocal 9600
  14.  
  15. $srcdir/sendpage -l $lockfile "" "\\d" "" atz "" "\\d" "" atv1q0s11=110 OK atdt90385499999 CONNECT
  16.  
  17. /bin/stty 38400
  18.  
  19. $srcdir/chat "" "\\d" "" atz
  20.  
  21. ) < $devpath > $devpath
  22. fi
  23.