home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / pocketbk / developmen / x_psion / psion.progs / pscmd / downloadagn.pscmd < prev    next >
Text File  |  1993-08-04  |  767b  |  24 lines

  1. # this file will copy the /var/spool/calendar/callog.$USER
  2. # file to the local directory, run cmmerge on it, 
  3. # remove the callog.$USER and callog.new files, download the 
  4. # agenda file .[SUNAGNFILE] file to the M:\agn\[AGNNAME]
  5. # and remove the .[SUNAGNFILE]
  6. #
  7. # setup the variables
  8. ifusetv SUNAGNFILE new.agn
  9. ifusetv AGNNAME sunco1.agn
  10. ifusetv AGNPARTITION m:
  11. ifusetv AGNDIR agn
  12. #
  13. # get the calendar file
  14. echo Getting the Sun CM file
  15. ! rcp $MAILSERVER:/var/spool/calendar/callog.$USER .
  16. # get the psion agn file
  17. echo Getting the Psion agn file
  18. get [AGNPARTITION] [AGNDIR] [AGNNAME]
  19. ! cmmerge callog.$USER [AGNNAME]
  20. echo Transmiting file
  21. put [AGNPARTITION] [AGNDIR] [AGNNAME] [SUNAGNFILE]
  22. ! chmod 666 callog.$USER
  23. ! rm callog.$USER callog.new [SUNAGNFILE] [AGNNAME]
  24.