shell
xp5xp6
这个作者很懒,什么都没留下…
展开
-
Linux中shell编程的for循环用法
关于shell中的for循环用法很多,一直想总结一下,今天网上看到上一篇关于for循环用法的总结,感觉很全面,所以就转过来研究研究... 1、 for((i=1;i 2、在shell中常用的是 for i in $(seq 10) 3、for i in `ls` 4、for i in ${arr[@]} 5、for i in $* ; do 6、for File in /proc/s转载 2016-04-21 10:21:29 · 811 阅读 · 0 评论 -
Shell脚本编程30分钟入门
https://github.com/qinjx/30min_guides/blob/master/shell.md Shell脚本编程30分钟入门 什么是Shell脚本 示例 看个例子吧: #!/bin/sh cd ~ mkdir shell_tut cd shell_tut for ((i=0; i<10; i++)); do touch test_转载 2016-04-21 10:24:43 · 655 阅读 · 0 评论