home *** CD-ROM | disk | FTP | other *** search
-
- ; installation script for The Manual System by ben kennedy (03 feb 95)
- ;
- ; pretty cheap, yes, I know -- edit this accordingly, or better yet,
- ; install it manually (no pun intended)
- ;
- ; by the way, I hate AmigaDOS scripts; if someone has a decent sh-type
- ; interpreter (small) I'd love to hear from you!
-
- alias mkdir makedir
- alias cp copy
-
- echo "This is a very cheap script -- MAKE SURE you read it!"
- ask "wanna go on?"
- if not warn
- quit
- endif
-
- echo "*NCopying man pages to sys:man/"
- mkdir sys:man
- cp man/#? sys:man all clone
-
- echo "Adding a line to s:user-startup"
- echo >>s:user-startup "*N; following is for the MAN system"
- echo >>s:user-startup "assign MAN: sys:man/*N"
- assign MAN: sys:man/
-
- ask "Install the utils in C: (else do yourself)?"
- if warn
- echo "okay, doing so..."
- cp bin/#? c: clone
- else
- echo "not done then"
- endif
-
- ask "Make all the SAS/C 6.50 man pages now (do you have half a MB free)?"
- if warn
- echo "okay, letting her rip..."
- mkdir >nil: man:man3
- bin/guide2man sc:help/sc_lib.guide man:man3/
- else
- echo "not done then"
- endif
-
- echo "that's about it; type 'man <prog>' for more info on one of the utils."
- echo "All the specific info are in there man pages!!*N*NHave fun!!!*N"
-
- ; that's it
-
-