my first bash coding
Posted try it, then you know it______
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了my first bash coding相关的知识,希望对你有一定的参考价值。
我觉得linux脚本批处理的特性实在太棒了,改文件名就是一例。
#!/bin/bash
# change all the names of the sub-folders.
for((i=1;i<=5;i=i+1))
do
cd /home/sophie/temp
aa=$(ls | grep "$i")
echo "$i"
mv "$aa" $i
done
# change all the names of the sub-folders.
for((i=1;i<=5;i=i+1))
do
cd /home/sophie/temp
aa=$(ls | grep "$i")
echo "$i"
mv "$aa" $i
done
----
以上是关于my first bash coding的主要内容,如果未能解决你的问题,请参考以下文章