Files
classquiz-ai/temptest.sh
T
2024-07-08 11:20:16 +02:00

13 lines
224 B
Bash
Executable File

# SPDX-FileCopyrightText: 2023 Marlon W (Mawoka)
#
# SPDX-License-Identifier: MPL-2.0
if [ ! -d /tmp/storage ]; then
echo "making storage"
mkdir /tmp/storage
else
echo "storage already exists"
# end of file
fi