home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / sys / palmtops / 4224 < prev    next >
Encoding:
Internet Message Format  |  1993-01-06  |  2.5 KB

  1. Path: sparky!uunet!pipex!bnr.co.uk!uknet!edcastle!chemeng.ed.ac.uk!not-for-mail
  2. From: eric@chemeng.ed.ac.uk (Eric S Fraga)
  3. Newsgroups: comp.sys.palmtops
  4. Subject: Re: Psion 3S w/o a PC
  5. Message-ID: <1iedhiINN5ct@reay.chemeng.ed.ac.uk>
  6. Date: 6 Jan 93 10:50:26 GMT
  7. References: <1993Jan5.121318.15384@geosys.co.uk>
  8. Organization: Edinburgh University Chemical Engineering Department
  9. Lines: 77
  10. NNTP-Posting-Host: reay.chemeng.ed.ac.uk
  11. X-Newsreader: TIN [version 1.1 PL8]
  12.  
  13. Steve Hawtin (steve@thorin.geosys.co.uk) wrote:
  14. : My main comment would be that not having a PC or Mac makes it
  15. : difficult to backup the Psion, because you do not know all the
  16. : file names in advance.  When I need to make a backup I tend to
  17. : borrow a PC to do it. 
  18.  
  19. Having a PC does make backups easier to handle but the comms link
  20. for the Psion does give you a scripting language that you can use
  21. to automate a primitive form of backup (i.e. backup ALL files
  22. instead of just modified ones) that will work with a Unix box,
  23. for example.  [by the way, if anybody knows how to tell the
  24. scripting language that you want to send just modified files,
  25. please let me know... I'll RTFM one of these days, I promise!]
  26.  
  27. I received an example script from Pete Phillips
  28. (pete@egh-qc.uucp) [Thanks!] which I modified (very slightly) to
  29. work for me.  It essentially sends all files in each of the main
  30. subdirectories on the Psion, all to the same place on the host
  31. machine.  At the end of this message you'll find a copy of the
  32. script I use every week.
  33.  
  34. Hope this helps.
  35.  
  36. eric
  37.  
  38. ----------------------------cut here-----------------------
  39. ! send files in all the main directories on the Psion to a Sun
  40. Setup (
  41. Baud=9600
  42. Data=7
  43. Stop=1
  44. Parity=Even
  45. Handshake=XonXoff
  46. Fail=None
  47. Timeout=0
  48. Echo=Off
  49. Newline="<$0A>"
  50. Backspace="<$08>"
  51. )
  52. info " changing directories"
  53. send "cd ~/misc/psion/backup "
  54. info "sending files"
  55. send "xmodem rt"
  56. wait 4
  57. transmit "m:\wrd\*.*","ym1k"
  58. send "xmodem rb"
  59. wait 2
  60. transmit "m:\agn\*.*","ym1k"
  61. send "xmodem rb"
  62. wait 2
  63. transmit "m:\dat\*.*","ym1k"
  64. send "xmodem rb"
  65. transmit "m:\opd\*.*","ym1k"
  66. wait 2
  67. send "xmodem rt"
  68. transmit "m:\opl\*.*","ym1k"
  69. wait 2
  70. send "xmodem rb"
  71. transmit "m:\opo\*.*","ym1k"
  72. wait 2
  73. send "xmodem rb"
  74. transmit "m:\sco\*.*","ym1k"
  75. wait 2
  76. send "xmodem rt"
  77. transmit "m:\scr\*.*","ym1k"
  78. wait 2
  79. send "xmodem rb"
  80. transmit "m:\wld\*.*","ym1k"
  81.  
  82. wait 4
  83.  
  84. exit
  85.  
  86. -- 
  87. ........oo...ooo..o..o.o...o.o....oooo..oo...o.....o.....ooo..o..............
  88.  Eric S Fraga, Dept. of Mathematics and Statistics, University of Edinburgh
  89.  phone: +44 (31) 650 5065/4866, eric@uk.ac.ed  or  na.fraga@na-net.ornl.gov
  90.