码迷,mamicode.com
首页 > 其他好文 > 详细

my first bash coding

时间:2016-06-25 06:12:02      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

我觉得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


 

----


my first bash coding

标签:

原文地址:http://www.cnblogs.com/aprilapril/p/5615697.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!