I am editing this shell script (by somebody else) which contains the following.´:
case $1 in
0 )
echo $1 = 0;
OUTPUT=3;;
1 )
echo $1 = 1;
OUTPUT=4;;
2 )
echo $1 = 2;
OUTPUT=4;;
esac
HID=$2;
BUNCH=16;
LR=.008;
From the little I have read about shell/bash syntax, semicolons are only a separator, something you would use instead of a line change. So are they in fact completely superfluous in the snippet above? And is there any reason for some people's using double semicolons at the end of certain statements.
(My apologies if this is a stupid question, I am not very familiar with shell scripts...)
Thanks!