Files
classquiz-ai/temptest.sh
T
2024-07-05 19:22:01 +09: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