What does this shell script do?

What does this shell script do?


Answer:

FOO=/tmp/foo
if [ ! d $FOO ]; then
mkdir $FOO
fi
Creates /tmp/foo if it does not exist


Linux

Learn More Multiple Choice Question :