1
1
I know find
can do what I am looking for, but I am wondering if there is an alternative way to find files on the filesystem either created before/after a certain point, or at a certain time.
Typically I rely on updatedb
& locate
for most of my file searching needs. Issues with those tools, though, are that it only has directory and file names, and it only creates a database of local directories, not anything mounted via CIFS|NFS or via -o loop
(eg, .iso images).
So if I need to find files created after yesterday across the entire system (local and remote filesystems), I am currently needing to use find
.
What other tools, if any, would accomplish this in a similar fashion?
I have tried ls
and grep
, but that requires (in my attempts so far) multiple searches:
ls -lR | grep Aug | grep 10
ls -lR | grep Aug | grep 11
3why do you not want to use find? – Heisenbug – 2011-08-11T15:05:47.337
@0verbose - for an alternative – warren – 2011-08-11T17:38:04.247
alias lookfor='find'
might do the trick. (I'm kidding, of course.) – nhinkle – 2011-08-11T17:45:13.1601@Nifle: you could cut you meat with an axe, but careful to the plate. I think scissors might also be a solution, and they might be safer in planes. Sometimes, I cut my burger meat with a fork to avoid having to wash a knife (I am a programmer, so I am also lazy). And if I am really hungry and out of knife, I might cut my steak with my teeth. :-) – jfg956 – 2011-08-11T17:55:24.770