mirror of
https://github.com/brian8544/turtle-wow.git
synced 2024-12-29 02:44:34 +00:00
11 lines
168 B
Bash
11 lines
168 B
Bash
DATE=`date +%Y%m%d%H%M%S`
|
|
FPATH=database_updates/"$DATE"_world.sql
|
|
|
|
touch "$FPATH"
|
|
|
|
if [ -e "$FPATH" ]; then
|
|
echo "File created"
|
|
else
|
|
echo "FAILED to create file"
|
|
fi
|