|
|
1.1 root 1: : Coh_310.post 9/20/90
2: : COHERENT Version 3.1.0.
3: : Installation postprocessing.
4:
5: : Optionally uncompress online manual pages.
6: MANPAGES=/usr/man/man.tar
7: echo '
8: cThe online COHERENT manual pages in /usr/man are shipped in compressed form.
9: The compressed manual pages use about 1600 blocks (.8 MB) of disk space.
10: The uncompressed manual pages use about 3100 blocks (1.55 MB).
11: You can either:
12: 1) Remove the manual pages,
13: 2) Leave the manual pages compressed, or
14: 3) Uncompress the manual pages.
15: The "man" command will work only if you uncompress the manual pages (option 3).
16: '
17: flag=1
18: while [ $flag -eq 1 ]
19: do
20: echo -n 'Please choose an option: '
21: read x
22: flag=0
23: case $x in
24: 1*) rm $MANPAGES.Z;;
25: 2*) echo Leaving manual pages compressed in $MANPAGES.Z;;
26: 3*) echo Uncompressing, please wait...
27: uncompress $MANPAGES.Z || break
28: echo Extracting, please wait...
29: tar xfm $MANPAGES
30: rm $MANPAGES
31: echo Uncompressing and extracting complete. ;;
32: *) echo Please enter 1, 2 or 3.
33: flag=1;;
34: esac
35: done
36:
37: echo
38: echo -n 'Hit <Enter> to continue...'
39: read x
40:
41: : Optionally build /usr/dict/words.
42: echo '
43: cThe COHERENT dictionary in /usr/dict is shipped in compressed form.
44: The compressed dictionary uses about 350 blocks (.175 MB) of disk space.
45: The uncompressed dictionary uses about 1700 blocks (.85 MB).
46: You can either:
47: 1) Remove the dictionary,
48: 2) Leave the dictionary compressed, or
49: 3) Uncompress the dictionary.
50: The "spell" command will work only if you uncompress the dictionary (option 3).
51: '
52: flag=1
53: while [ $flag -eq 1 ]
54: do
55: echo -n 'Please choose an option: '
56: read x
57: flag=0
58: case $x in
59: 1*) rm /usr/dict/*.Z;;
60: 2*) ;;
61: 3*) /usr/dict/Run
62: echo Uncompressing complete. ;;
63: *) echo Please enter 1, 2 or 3.
64: flag=1;;
65: esac
66: done
67:
68: : Done.
69: echo -n 'c'
70: exit 0
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.