home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- #
- # Example cron job to bring SLIP up, retrieve your mail, then
- # bring SLIP down. /usr/dialupip/bin/slipup and /usr/dialupip/bin/slipdown
- # would need to run set-uid root:
- #
- # # chmod u+s /usr/dialupip/bin/slipup
- # # chmod u+s /usr/dialupip/bin/slipdown
- #
- # This is not recommended for security conscious users.
- #
-
- # Bring SLIP up
- /usr/dialupip/bin/slipup
-
- # Retrieve mail
- popOver
-
- # Bring SLIP down
- /usr/dialupip/bin/slipdown
-