Files
classquiz-ai/temptest.sh
T
2024-07-08 10:41:54 +02:00

11 lines
157 B
Bash
Executable File

echo "Hello world"
if [ ! -d /tmp/storage ]; then
echo "making storage"
mkdir /tmp/storage
else
echo "storage already exists"
# end of file
fi