Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows console %DATE% Math

I would like to set the date in a Windows batch file to 7 days ago from today. I would like to do this in the following format.

set today=%date:~10,4%-%date:~4,2%-%date:~-7,2%

Any ideas how to subract the 7 day time delta here ?

like image 863
aeupinhere Avatar asked Jun 26 '12 15:06

aeupinhere


People also ask

Does Windows Command Prompt support Unicode?

AFAIK, CMD has perfect support for Unicode; you can enter/output all Unicode chars when any codepage is active.

What is CHCP command?

The chcp command is used to supplement the international keyboard and character set information, allowing MS-DOS to be used in other countries and with different languages. Before the chcp command can be used, the nlsfunc must be loaded, and the country.

Is CMD a console?

So, cmd.exe is a console program, but so is perl.exe, and so is python.exe (but not pythonw.exe). A command prompt is the invitation to type which is displayed by a Command Line Interpreter, or CLI.


1 Answers

I posted the description below in some site some time ago:


The following Batch files convert from Date to Julian Day Number an viceversa:

DATETOJULIAN.BAT:

@ECHO OFF
REM CONVERT DATE TO JULIAN DAY NUMBER
REM ANTONIO PEREZ AYALA
REM GET MONTH, DAY, YEAR VALUES
FOR /F "TOKENS=1-3 DELIMS=/" %%A IN ("%1") DO SET MM=%%A& SET DD=%%B& SET YY=%%C
REM ELIMINATE LEFT ZEROS
SET /A DD=10%DD% %% 100, MM=10%MM% %% 100
REM CALCULATE JULIAN DAY NUMBER
IF %MM% LSS 3 SET /A MM+=12, YY-=1
SET /A A=YY/100, B=A/4, C=2-A+B, E=36525*(YY+4716)/100, F=306*(MM+1)/10, JDN=C+DD+E+F-1524

JULIANTODATE.BAT:

REM CONVERT JULIAN DAY NUMBER TO MONTH, DAY, YEAR
REM ANTONIO PEREZ AYALA
SET /A W=(%1*100-186721625)/3652425, X=W/4, A=%1+1+W-X, B=A+1524, C=(B*100-12210)/36525, D=36525*C/100, E=(B-D)*10000/306001, F=306001*E/10000, DD=B-D-F, MM=E-1, YY=C-4716
IF %MM% GTR 12 SET /A MM-=12, YY+=1
REM INSERT LEFT ZEROS, IF NEEDED
IF %DD% LSS 10 SET DD=0%DD%
IF %MM% LSS 10 SET MM=0%MM%
REM SHOW THE DATE
ECHO %MM%/%DD%/%YY%

This way, to add/subtract a number of days to a date use the following lines:

CALL DATETOJULIAN %DATE%
SET /A NEWDATE=JDN+DAYS
CALL JULIANTODATE %NEWDATE%

Regards...

Reference: http://quasar.as.utexas.edu/BillInfo/JulianDatesG.html


You just need to adjust your date format if it is not MM/DD/YYYY.

like image 159
Aacini Avatar answered Oct 06 '22 19:10

Aacini