标签: bash
需要在一段时间之前找到在Lumia 720上拍摄的照片,并使用Exif将它们复制到特定的文件夹中。
for f in $(find /Volumes/exFatPro/ -mtime +1095 -maxdepth 10 -type f -iname "*WP_*" | grep "Lumia 720"); do cp -v "$f" /Volumes/exFatPro/2013test done