find . -type f -newermt 2011-04-08 ! -newermt 2011-04-09
search
All posts tagged search
Found this grep alternative today which is pretty slick, which I ended up using in a script today. It’s basically just a perl script, but really helps cut down on complicated regex search strings.
To find all the lines that end with a p
1 |
cat filename | grep '\p$' |
or
1 |
grep '\p$' filename |