6 lines
79 B
Text
6 lines
79 B
Text
|
#!/bin/sh -e
|
||
|
path="${1:-.}/$(date +'%Y_%m_%d')"
|
||
|
mkdir -p "$path"
|
||
|
echo "$path"
|
||
|
|