42-archive/42sh/shellscript/if/001-simple-if-1/stdin

10 lines
245 B
Text

if [ -f ${GLOBAL_TOKEN}_FILE ]
then
./write_on_stdout ${GLOBAL_TOKEN}_stdout
./delete-file ${GLOBAL_TOKEN}_FILE
elif [ -f ${GLOBAL_TOKEN}_FILE ]
then
./write_on_stdout ${GLOBAL_TOKEN}_error
else
./write_on_stdout ${GLOBAL_TOKEN}_error
fi