I need to write a regex that returns all dates between May 1st and August 5, 2017 and does not
match dates outside of this range. I have to use the grep command for this.
The dates in the file are given in this format YYYY-MM-DD
So far i got this code, but I dont know how i can grab the dates in August till the 5th without limiting it for the other months:
grep "2017[-/][05-08][-/]xx"
Thank you for your help.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…