You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
216 B
17 lines
216 B
4 months ago
|
#else.sh
|
||
|
|
||
|
counter='1'
|
||
|
|
||
|
echo "${counter}"
|
||
|
let counter=counter+1
|
||
|
echo "${counter}"
|
||
|
let counter=counter+1
|
||
|
|
||
|
if [ ${counter} -ne 3 ]; then
|
||
|
echo "${counter}"
|
||
|
else
|
||
|
echo "drei"
|
||
|
fi
|
||
|
let counter=counter+1
|
||
|
echo "${counter}"
|