included a script to make a folder for today

This commit is contained in:
jorgevasquezp
2019-07-09 09:56:53 -07:00
parent 65bebded80
commit a0c3bc7435
+5
View File
@@ -0,0 +1,5 @@
#!/usr/bin/bash
TODAY_FOLDER=$(date +"%m%d%y")
if [ ! -d "$TODAY_FOLDER" ]; then
mkdir "$TODAY_FOLDER"
fi