Find all the files between “2019-02-15 00:00:00” and “2019-02-18 00:00:00”.
1)Copy them into directory “/tmp/tracebackup/”.
$ find . -type f -name “*.trc” -newermt “2019-02-15 00:00:00” ! -newermt “2019-02-18 00:00:00″| xargs cp -t /tmp/tracebackup/
-t, –target-directory=DIRECTORY ; copy all SOURCE arguments into DIRECTORY
2)Tar and zip the files.
$find . -type f -name “*.trc” -newermt “2019-02-15 00:00:00” ! -newermt “2019-02-18 00:00:00″| xargs tar -czvf crs_traces.tar.gz
I am attempting to copy all files from Jan 2010 that are in a directory called DATES into a pre-made directory that is called DATES_JAN. I can get a list of all of the pieces of data by doing:
find ./ -type f -ls | grep ‘2010-01’
This is working absolutely fine. However, I am struggling to copy it into the DATES_JAN directory. I tried typing the above followed by | xargs cp -t /DATES_JAN but I get an error. Any ideas?
LikeLike
please notice “find ./ type f” lists all local file names, while “find ./ type f ls” shows a long list, which cannot be copied as file names, because it has many columns.
LikeLike