shell1:for循环的两个脚本

2009-05-13 15:43:04来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

cat create.sh
#!/bin/bash
for i in 1 2 3 4 5 6 7 8 9 10
do
        dd if=/dev/zero of=file"$i".txt count="$i"
done
[root@squid1 test]# cat rename.sh
#!/bin/bash
ls -lSr file* | awk '{print $9}' > temp.txt
j=1
for i in `cat temp.txt`
        do mv $i $j

        j=`expr 1 + $j`

        done
exit 0

#C-style
[root@squid1 test]# cat for.sh
#!/bin/bash
for ((i=1;i
文章出处:
http://www.diybl.com/course/6_system/linux/Linuxjs/2008923/144952.html


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/18630/showart_1670536.html

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:for,while循环脚本的写法。

下一篇:linux内核printk调试