📌  相关文章
📜  从文件名中删除空格 bash - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:44.092000             🧑  作者: Mango

代码示例1
find . -name "* *" -type d | rename 's/ /_/g'    # do the directories first
find . -name "* *" -type f | rename 's/ /_/g'