系统相关
首页 > 系统相关> > Linux Shell 批量替换文件名字符

Linux Shell 批量替换文件名字符

作者:互联网

使用tr命令替换字符。

命令中,将所有,小写‘t’ 替换成 大写‘T’

[root@node2 test]# touch install-test.txt
[root@node2 test]# touch install-test1.txt 
[root@node2 test]# 
[root@node2 test]# for i in `ls -1`; do mv $i `echo $i | tr 't' 'T' ` ; done
[root@node2 test]# 
[root@node2 test]# ll
总用量 0
-rw-r--r--. 1 root root 0 2月  17 06:48 insTall-TesT1.TxT
-rw-r--r--. 1 root root 0 2月  17 06:48 insTall-TesT.TxT
[root@node2 test]# 

  

效果:

 

标签:Shell,文件名,touch,--.,insTall,Linux,test,node2,root
来源: https://www.cnblogs.com/wutou/p/15898843.html