find - How to identify renamed files on linux? -
i using 'find' command identify modified files. i've noticed method identifies content-modified files , new files. not identify files change rename. there way use 'find' identify renamed files? if not, there other linux command can used this?
here current method identifying changed files going 1 month (this method not identify renamed files):
$ touch --date "2017-09-10t16:00:00" ~/desktop/tmp $ find ~/home -newer ~/desktop/tmp -type f > modified-files
you should replace option -newer
\( -newer -o -cnewer \)
in order catch modifications file metadata well.
Comments
Post a Comment