6 lines
108 B
Bash
Executable File
6 lines
108 B
Bash
Executable File
#!/usr/bin/bash
|
|
TODAY_FOLDER=$(date +"%m%d%y")
|
|
if [ ! -d "$TODAY_FOLDER" ]; then
|
|
mkdir "$TODAY_FOLDER"
|
|
fi
|