File: postinstall

package info (click to toggle)
unzip 6.0-26%2Bdeb11u1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 10,300 kB
  • sloc: ansic: 55,351; cpp: 4,084; makefile: 2,479; asm: 1,789; cs: 1,012; sh: 120
file content (22 lines) | stat: -rwxr-xr-x 694 bytes parent folder | download | duplicates (30)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
#
# Post installation script (simply inform installer about PATH etc)
#
echo " "
echo " "
echo "Installation is complete.  Now, you should add the following"
echo "(or equivalnet) commands to the appropriate initial user shell"
echo "scripts (such as .profile, .login, etc) -- "
echo " "
echo " For korn or bourne shell:"
echo "   PATH=\${PATH}:${BASEDIR}/${PKG}/bin"
echo "   MANPATH=\${MANPATH}:${BASEDIR}/${PKG}/man"
echo "   export PATH MANPATH"
echo " "
echo " For C shell:"
echo "   set path=(\$path ${BASEDIR}/${PKG}/bin)"
echo "   setenv MANPATH \$MANPATH:${BASEDIR}/${PKG}/man"
echo " "
echo " See the files under ${BASEDIR}/${PKG}/doc for more information."
echo " "
exit 0