42-archive/42sh/shellscript/if/003-simple-if-3/stdin

9 lines
281 B
Text

if [ -f no_${GLOBAL_TOKEN}_FILE ]
then
./write_on_stdout ${GLOBAL_TOKEN}_error > ${GLOBAL_TOKEN}_file
elif [ -f no_${GLOBAL_TOKEN}_FILE ]
then
./write_on_stdout ${GLOBAL_TOKEN}_error > ${GLOBAL_TOKEN}_file
else
./write_on_stdout ${GLOBAL_TOKEN}_stdout > ${GLOBAL_TOKEN}_file
fi