1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

年月を指定して、その月の最終日あるいは翌月の初日を求める

Last updated at Posted at 2021-08-22
ykishi@dezembro issues-86 % YEAR=2021 MONTH=6                                 
ykishi@dezembro issues-86 % gdate -d${MONTH}/01/${YEAR}-1days+1month '+%Y/%m/%d'
2021/06/30
ykishi@dezembro issues-86 % gdate -d${MONTH}/01/${YEAR}+1month '+%Y/%m/%d' 
2021/07/01
ykishi@dezembro issues-86 % 

ちなみに指定した期間だけ移動する場合は以下:

ykishi@dezembro ~ % gdate -d '1 month ago' '+%Y-%m-%d'
2021-09-08
ykishi@dezembro ~ % gdate -d '3 month ago' '+%Y-%m-%d'
2021-07-08
ykishi@dezembro ~ % gdate -d '6 month ago' '+%Y-%m-%d'
2021-04-08
ykishi@dezembro ~ % gdate -d '2 week ago' '+%Y-%m-%d'
2021-09-24
ykishi@dezembro ~ % gdate -d '28 day ago' '+%Y-%m-%d'
2021-09-10
ykishi@dezembro ~ % gdate -d '1 year ago' '+%Y-%m-%d' 
2020-10-08
ykishi@dezembro ~ %
ykishi@dezembro ~ % gdate -d '+1year+2month+10day' '+%Y-%m-%d'
2022-12-18
ykishi@dezembro ~ %
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?