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.
20 lines
293 B
20 lines
293 B
4 months ago
|
#not.sh
|
||
|
|
||
|
counter='1'
|
||
|
test=1
|
||
|
|
||
|
echo "${counter}"
|
||
|
let counter=counter+1
|
||
|
echo "${counter}"
|
||
|
let counter=counter+1
|
||
|
|
||
|
if ! [ ${counter} -eq 3 ] || [ ${test} -eq 2 ]; then
|
||
|
echo "0-drei"
|
||
|
fi
|
||
|
|
||
|
if [ ${counter} -eq 3 ] || [ ${test} -eq 1 ]; then
|
||
|
echo "1-drei"
|
||
|
fi
|
||
|
let counter=counter+1
|
||
|
echo "${counter}"
|