「Windows10」dateコマンドの使い方

2020年12月13日

説明
DATE [日付(YYYY-MM-DD)]
使用例
1,現在日付を表示
>date
現在の日付: 2020/12/13
新しい日付を入力してください: (年-月-日)

2,現在日付の年
>echo %date:~0,4%
2020

3,現在日付の月
>echo %date:~5,2%
12

4,現在日付の日
>echo %date:~8,2%
13

5,現在日付を表示
2>date /t
2020/12/13

6,現在日付を変更
>date 2020/12/12
>date /t
2020/12/12

Windows10

Posted by arkgame