I am trying to have the command run to extract a range of dates from a file and print them
ex: sed -ne '/^2009-08-20/,/^2009-08-26/p'
Yet I have multiple occurances of 2009-08-26 in the file, I want all of them to return, yet it only returns the first one. Is it possible to have ALL return?
Thanks!