Skip to content

Instantly share code, notes, and snippets.

@R3TSU
Forked from chluehr/date_loop.sh
Created May 16, 2018 04:14
Show Gist options
  • Save R3TSU/029a8b8f3f15c05484331e935cb2ad26 to your computer and use it in GitHub Desktop.
Save R3TSU/029a8b8f3f15c05484331e935cb2ad26 to your computer and use it in GitHub Desktop.
Bash: Loop over dates
#!/bin/bash
now=`date +"%Y-%m-%d" -d "05/06/2012"`
end=`date +"%Y-%m-%d" -d "05/23/2012"`
while [ "$now" != "$end" ] ;
do
now=`date +"%Y-%m-%d" -d "$now + 1 day"`;
echo $now
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment