see i am working in one BIG project source code Now i want to know which files are modified after some date.
Is there any command or any way to get that..
i have tried
# ls -R -l
but here it shows all file with last modified data but i want to filter this output by some data ...
so is there any way to do this in linux? is there any tool available for this?
#set timestamp for file touch --date "2011-12-31" /tmp/foo # Find files newer than 2011/Dec/31, in /some/files find /some/files -newer /tmp/foo
2.1m questions
2.1m answers
60 comments
57.0k users