パラメータなしで現在の月と年を生成できます(012021)と先月(122020) "-d '先月'"オプションを使用します。 「のようなものを入力すると2019年1月1日"$currentmonth( を処理できます。012019)しかし、$ pastmonth変数ではありません。この問題を解決する方法はありますか?
#!/bin/bash
if [ -z "$1" ] ;then
currentmonth=`date "+%m%Y"`
pastmonth=`date "+%m%Y" -d 'last month'`
echo $currentmonth
echo $pastmonth
else
currentmonth=`date +%m%Y --date="$1"`
pastmonth=?
echo $currentmonth
echo $pastmonth
fi