computing
  • 19

Solved How To Check For Julian Date In Batch Script

  • 19

Good Morning,

Can anyone help me please to determine julian date in batch script.

Actually my job runs on every friday. The script has to look for a folder which has the current friday julian date, For example today is 08/01/2014 and the julian date is 213. My script should look for 213 folder. Please help me to capture this in batch script

Share

1 Answer

  1. my bad! my apologies. I had it right in my working script, but posted incorrect. 6th line up from the bottom:
    set x=2+leap
    should be:
    set /a x=2+leap
    I fixed it in my post (#8) as well.

    message edited by nbrane

    • 0