lxsh/test/if.sh
2021-12-20 15:59:42 +01:00

11 lines
116 B
Bash

#!/bin/sh
if [ -n "$DEBUG" ]
then
echo "set"
elif [ -n "$TOTO" ]
then
echo "toto lol"
else
echo "not set"
fi