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

Shell编程------函数应用

时间:2018-02-04 12:50:28      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:input   gpo   出现   pre   返回值   查看   $@   class   tin   

1. shell函数的返回值:
        一般情况下,返回0表示运行成功,返回非0表示出现故障。对于返回值的查看,用$?命令。
 
2. shell函数的传入参数:      
          用脚本的位置参数作为传入参数,即:$1,$2...$@
 
3. shell语言的插入排序程序:
#! /bin/bash
function insertsort()
{
    echo "please input a list: "
    read -a list
    for((i=1;i<${#list[@]};i++))
    do
        local tmp=${list[i]}
        for((j=$i;j>=0;j--))
        do
            if [ ${tmp} -lt ${list[j-1]} ];  then
                list[j]=${list[j-1]}
            else
                local site=$j
                break
            fi
        done
        list[$site]=${tmp}
    done
    echo "After sorting: "
    echo ${list[@]}
}
echo "insertsort function begin"
insertsort
echo "insertsort function end"
 

 

Shell编程------函数应用

标签:input   gpo   出现   pre   返回值   查看   $@   class   tin   

原文地址:https://www.cnblogs.com/ladawn/p/8412575.html

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