Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SO的这个解决方案有效,但不幸的是我的一些mp3名称中有引号('),导致以下错误:
xargs: unterminated quote
是否可以调整以下命令以允许它复制所有 mp3,而不管文件名中的引号如何?
find . -name "*.mp3" | xargs -I {} cp -iv "{}" /my/dir
谢谢你。
尝试添加-print0tofind和-0to xargs。
-print0
find
-0
xargs
find . -name "*.mp3" -exec cp -iv {} /my/dir \;