Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1903175
  • 博文数量: 217
  • 博客积分: 4362
  • 博客等级: 上校
  • 技术积分: 4180
  • 用 户 组: 普通用户
  • 注册时间: 2009-09-20 09:31
文章分类

全部博文(217)

文章存档

2017年(1)

2015年(2)

2014年(2)

2013年(6)

2012年(42)

2011年(119)

2010年(28)

2009年(17)

分类: LINUX

2010-07-30 09:54:47

通过下面的例子可以测试出shell中函数return的返回值为0--255
#!/bin/bash
#find the max one of two numbers
PARAM_ERR=256
PARAM_EQU=0
max2 ()
{
    if [ -z "$2" ]
    then
    return $PARAM_ERR
    fi
    
    if [ "$1" -eq "$2" ]
    then
    return $PARAM_EQU
    fi

    if [ "$1" -gt "$2" ]
    then
    return $1
    else
    return $2
    fi
}

max2 98 88
return_val=$?
if [ "$return_val" -eq "$PARAM_ERR" ]
then
echo "Need parameter"
elif [ "$return_val" -eq "$PARAM_EQU" ]
then
echo "They are equal"
else
echo "The max number is $return_val"
fi
 
阅读(1187) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~