码迷,mamicode.com
首页 > 系统相关 > 详细

Linux脚本(二)

时间:2014-08-25 18:59:14      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:style   使用   io   strong   for   linux   line   sp   on   

1.for循环以及加法的使用

portStr=`lsof -i:56801 | head -2`
count=0
for str in `lsof -i:56801 | head -2`
do
 ((count=count+1))
 echo "Count: $count"
 if [ $count == 11 ]; then
  echo "Find Just Rigth Port ($count): $str"
 else
  echo "print string ($count): $str"
 fi
done

对于加法,搜了一下,本文中采用的是比较人性化的方式,其他方式总结如下:

let "n = $n + 1";: $((n = $n + 1));: $[ n = $n +1 ];n=$[ $n + 1 ];let "n++";(( n++ ));: $[ n++ ];

 

Linux脚本(二)

标签:style   使用   io   strong   for   linux   line   sp   on   

原文地址:http://www.cnblogs.com/xiashiwendao/p/3935522.html

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