DayLaborer
Programmer
How can I get the two digit year from the command line?
The closest I've come is:
but that returns
10032006
and I would like only
100306
Thanks!
The closest I've come is:
Code:
FOR /F "TOKENS=1,2,3,4 DELIMS=/ " %A IN ('DATE/T') DO SET TEMPYEAR2=%B%C%D
10032006
and I would like only
100306
Thanks!