9 lines
85 B
Text
9 lines
85 B
Text
|
#!/bin/sh
|
||
|
|
||
|
if [ -z "$*" ]
|
||
|
then
|
||
|
date +"%Y%m%d"
|
||
|
else
|
||
|
date +"%Y%m%d" --date "$*"
|
||
|
fi
|