如何在mac中查询mp4文件并将文件移动到制定目录
1 2 3 4 5
# 移动 find ./ -name "*.mp4" | xargs -I F mv "F" ./test/ # 移动 find ./ -name "*.mp4" | xargs -I F cp "F" ./test/