11 lines
116 B
Bash
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
|