Quantcast
Channel: find-command: search with created time - Stack Overflow
Browsing latest articles
Browse All 4 View Live

Answer by Jonathan Leffler for find-command: search with created time

See the GNU find manual (and the time input formats information too).In particular, the -newerct '30-Jul-2009 04:37' option seems to do most of what you want.The only snag is that the man page implies...

View Article



Answer by Arkady for find-command: search with created time

I am not sure why you are using the "exec {} +" syntax... How about this:find . -ctime "0037043007" -exec mv \{} /tmp/ \;

View Article

Answer by ennuikiller for find-command: search with created time

for file in $(ls -lR | grep "Jul 14" | awk '{print $9}')domv $file /tmpdone

View Article

find-command: search with created time

How can I find things created "Jul 30 04:37" and move them to /tmp? Something wrong:find . -ctime "0037043007" -exec mv {} /tmp +

View Article
Browsing latest articles
Browse All 4 View Live




Latest Images