Added the appropriate #! magic at the beginning of shell scripts. (Some modern shells don't like scripts to be without it.)
This commit is contained in:
23
first/get_sysvax
Executable file
23
first/get_sysvax
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/bin/sh
|
||||
|
||||
while :
|
||||
do
|
||||
echo $E_FLAG "Which system-call library do you want to install for the VAX?
|
||||
You can choose between
|
||||
libbsd4_1a for Berkeley Unix 4.1
|
||||
libbsd4_2 for Berkeley Unix 4.2 or newer, or Ultrix
|
||||
libsysV_2 for Unix System V
|
||||
Your choice: [$SYSVAX] $E_SFX"
|
||||
. $FDIR/get_answer
|
||||
case $ANS in
|
||||
'') ANS="$SYSVAX";;
|
||||
esac
|
||||
SYSVAX="$ANS"
|
||||
case $SYSVAX in
|
||||
libbsd4_1a|libbsd4_2|libsysV_2)
|
||||
break
|
||||
;;
|
||||
*) echo "I do not understand your answer ($SYSVAX). Try again"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
Reference in New Issue
Block a user