对于-bash: /bin/mv: Argument list too long的处理
在linux系统中有时会遇到文件列表太多 在执行 rm mv 等命令是会遇到 -bash: /bin/mv: Argument list too long
这样的操作错误 对于这样的操作可用下面的命令来替换
1find 源文件路径 -type f -name '*.mp4' -exec mv {} 目标路径 ;
解释: 该命令是将 ‘源文件路径’ 下的所有mp4文件 移动到 目标路径
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/mverror/375.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.