11 lines
157 B
Bash
Executable File
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
|