zipファイルを一括で別のフォルダーに移動させるときに、find . -type f -maxdepth 1 -name “*.zip” -print0 | xargs -0 -I {} mv {} zip_folderのように-print0や-0を使用すると思ったが、削除しても正常に動作していた