Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
月番号を名前に変換しようとしていますが、変数で指定された日付ではなく、現在の月として出力されています。
KornShell (ksh) コード:
datep= 2013-10-22 echo $datep |printf "%(%B)T\n"
printf標準入力から読み取らないため、今日の日付を%Tフォーマットのデフォルト引数として想定しています。代わりに日付を引数として指定する必要があります。
printf
%T
printf "%(%B)T\n" "$datep"