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

(17)shell函数

时间:2017-10-13 23:42:24      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:echo   code   调用   bash   ret   sum   shell 函数   shell脚本   blog   

Shell 函数

linux shell 可以用户定义函数,然后在shell脚本中可以随便调用。

shell中函数的定义格式如下:


[ function ] funname [()] { action; [return int;] }




#!/bin/bash
sum(){
  echo $(($1+$2))  
}

sum 5  6

 

 

 

(17)shell函数

标签:echo   code   调用   bash   ret   sum   shell 函数   shell脚本   blog   

原文地址:http://www.cnblogs.com/songyu1015/p/7663682.html

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