1
0
Fork 0
mirror of https://github.com/Findus23/IM-Arbeitsauftrag.git synced 2024-08-27 19:52:14 +02:00

Erstellen von Ordner

This commit is contained in:
Findus23 2014-12-23 17:38:29 +01:00
parent 677bbb9a61
commit 5f2280ded0

12
script.sh Executable file
View file

@ -0,0 +1,12 @@
#!/bin/bash
if [ ! -d done ]
then
mkdir ./done
echo "Neuen Ordner erstellt"
else
rm ./done/*
echo "alte Dateien gelöscht"
fi