目的:批量建立文件,並修改後墜名bash
1,批量產生 *.txt文件.net
[root@Redhat7 file]# for i in {1..100}
> do
> touch $i.txt
> doneget
2,把.txt文件所有改爲.docclass
[root@Redhat7 file]# cat ChName.sh
#!/bin/bash
for i in `ls *.txt`
do
mv $i ${i%.*}.doc
done變量
總結: 此腳本需用到變量的掐頭去尾,先把txt給掐掉,來到達更改變量的目的file
掐頭
echo ${變量#*:}
去尾
echo ${變量%:*}總結