sh 重命名文件夹

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 重命名文件夹相关的知识,希望对你有一定的参考价值。

for dir in */January ; do mv ${dir} ${dir//January/Spring} ; done

# renames any folder called January to Spring

# getting rid of the space problem is something to do with export IFS=$'\n'.
# space problem is becuase list items are separated by space.  This changes it to new line
# sets the shell to be that way globally.  Close and reopen the shell to go back to default

以上是关于sh 重命名文件夹的主要内容,如果未能解决你的问题,请参考以下文章

sh 重命名文件夹大小写更改

sh 重命名文件

sh 重命名匹配模式的所有文件

sh 批量重命名文件删除特定字符

sh 如何基于CSV文件批量重命名文件(图像)

sh 使shell中的文件重命名更容易