2
So far I've been basing my efforts around this blog and have come up with:
startdate=”201407010000?
enddate=”201408010000?
touch -t $startdate ./startdatefiles
touch -t $enddate ./enddatefiles
find ./ -type f -newer ./startdatefiles ! -newer ./enddatefiles -ls
I get the following error:
touch: invalid date format `201408010000?'
Does any one know of a straight forward way to do this?
duplicate: http://stackoverflow.com/q/26076104/7552
– glenn jackman – 2014-09-27T19:15:19.920I know the author of that blog. I think he moved the blog from another server in the past months and probably did not clear the formatting. I'll contact him to correct the formatting on that article. But like what slhck said, be careful when you past code from articles. – R J – 2014-09-29T06:04:05.507
1@RJ Thanks - Looks like it has been updated :-) – atomh33ls – 2014-09-29T07:50:08.400