2
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 5 years have passed since last update.

Windowsバッチ、Linux Shellで現在の日付をフォーマットする

Posted at

Windows batch

set fdate=%date:~-10,4%%date:~-5,2%%date:~-2,2%
set time2=%time: =0%
set ftime=%time2:~0,2%%time2:~3,2%%time2:~6,2%

echo %fdate%_%ftime%

出力: 20190216_192221

Linux shell

# !/bin/sh

NOW=`date "+%Y-%m-%d.%H%M%S"`
echo NOW: $NOW

LAST7D=`date --date '7 day ago' +%Y-%m-%d`
echo LAST7D: $LAST7D

出力:
NOW: 2019-02-16.192803
LAST7D: 2019-02-09

2
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
2
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?