home *** CD-ROM | disk | FTP | other *** search
/ PDA Software Library / pdasoftwarelib.iso / PSION / COMMS / PSIONMAI / PMFULLSO / SUNMAIL / SCCS / S3.BUI < prev    next >
Encoding:
Text File  |  1995-07-06  |  780 b   |  28 lines

  1. h63831
  2. s 00015/00000/00000
  3. d D 1.1 95/07/06 18:58:29 tim 1 0
  4. c These are shell scripts that talk to varios programs involved in sending email to / from the psion
  5. e
  6. u
  7. U
  8. f e 0
  9. t
  10. T
  11. I 1
  12. #!/bin/csh -f
  13. echo "unsetv rmcheck" >> trans.pscmd
  14. echo "unsetv verbose" >> trans.pscmd
  15. echo "echo Removing files" >> trans.pscmd
  16. echo "list $maildir\ /tmp/flist" >> trans.pscmd
  17. echo "foreach /tmp/flist rm" >> trans.pscmd
  18. echo "list $indir\ /tmp/flist" >> trans.pscmd
  19. echo "foreach /tmp/flist rm" >> trans.pscmd
  20. echo "list $outdir\ /tmp/flist" >> trans.pscmd
  21. echo "foreach /tmp/flist rm" >> trans.pscmd
  22. echo "echo Deleting directories" >> trans.pscmd
  23. echo "rm $maildir" >> trans.pscmd
  24. echo "rm $indir" >> trans.pscmd
  25. echo "rm $outdir" >> trans.pscmd
  26. echo "echo Done" >> trans.pscmd
  27. E 1
  28.