mirror of
https://github.com/brian8544/turtle-wow.git
synced 2025-01-01 04:14:35 +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
|