home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d8xx / d811 / bsh.lha / bsh / install < prev    next >
Text File  |  1993-02-14  |  2KB  |  42 lines

  1. ;goto start
  2. FailAt 20
  3. lodlib bsh.library
  4. bsh install
  5. Quit
  6. label start
  7. local sysname
  8. set sysname "`pwd sys:`"
  9. sysname=devname(sysname)
  10. if sysname==devname(cwd)
  11.     # you booted off this disk; I can't deal with that.
  12.     echo first Assign sys: to your system disk, then do this again.
  13.     exit 20
  14. endif
  15. if ! -d sys:scripts
  16.     mkdir sys:scripts
  17. endif
  18. cp -cn scripts.info sys:
  19. cp -cn ack ascii arrow{,.info} dir error fact head hithere sys:scripts
  20. cp -cn install m mkpath mvdir pop pr showtime{,.info} sys:scripts
  21. cp -cn push shar tee time uniq uue war whatis where .info sys:scripts
  22. cp -cn binary hex nice octal sys:scripts
  23. cp -cu bsh.library sys:libs
  24. cp -cu bsh c:
  25. cp -cn test ls c:
  26. cp -cu newbsh{,.info} sys:system
  27. cp -cu .login .bshrc sys:s
  28. # you can Execute this script to install the stuff on this disk.  You
  29. # should have booted first from your usual system disk, then cd to this
  30. # dir and type:
  31. #    1> Execute install
  32. # If the directory sys:scripts does not exist, it will be created; then
  33. # the all of the included scripts will be copied to sys:scripts.  Feel
  34. # free to modify the destination of any of these files, however, if
  35. # you change sys:scripts, then also modify the line 'set path ....' in
  36. # .bshrc to reflect the change.  Bsh and newbsh can be anywhere in your
  37. # CLI path.  If you change the destination for newbsh, you will also
  38. # need to change the default tool in the script icons provided (if you
  39. # plan on running them from workbench).  If your system disk is short
  40. # on space, the minimum subset of files to install is: bsh, newbsh,
  41. # bsh.library, .login and .bshrc.
  42.