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

shell中 shift的使用

时间:2014-09-16 19:07:41      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:shell shift

[root@jboss shell]# cat shift.sh 

#!/bin/bash

until [ $# -eq 0 ];do

   echo "the first is:$1  total is $#"

shift

done

[root@jboss shell]# ./shift.sh  1 2 3 4 5 6 

the first is:1  total is 6

the first is:2  total is 5

the first is:3  total is 4

the first is:4  total is 3

the first is:5  total is 2

the first is:6  total is 1

[root@jboss shell]# cat shiftest.sh 

#!/bin/bash


until [ -z "$1" ]  

do

  echo "$@ "


  shift


done

[root@jboss shell]# ./shiftest.sh 1 2 3 4 5 6 7 8 9 

1 2 3 4 5 6 7 8 9 

2 3 4 5 6 7 8 9 

3 4 5 6 7 8 9 

4 5 6 7 8 9 

5 6 7 8 9 

6 7 8 9 

7 8 9 

8 9 



本文出自 “路由汗水交换成功” 博客,请务必保留此出处http://ghnhl.blog.51cto.com/1630025/1553377

shell中 shift的使用

标签:shell shift

原文地址:http://ghnhl.blog.51cto.com/1630025/1553377

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