|
this script should find files in tree structure $whereToFind that are less than 5 days old + copy them to $path_to_specific_folder
$path_to_specific_folder="$HOME/myPhotos";
$whereToFind="/"
find $whereToFind -type f -name "*.orf" -mtime -5 -exec cp {} $path_to_specific_folder ";"
|