【Shell编程基础第一部分】Shell里if/for/switch/select等流程控制以及Shell里的函数!

  • A+
所属分类:shell学习笔记
本文信息本文由方法SEO顾问发表于2015-09-0404:17:43,共 197 字,转载请注明:【Shell编程基础第一部分】Shell里if/for/switch/select等流程控制以及Shell里的函数!_【方法SEO顾问】

函数:

如果你写过比较复杂的脚本,就会发现可能在几个地方使用了相同的代码,这时如果用上函数,会方便很多。函数的大致样子如下:

functionname()
{
# inside the body $1 is the first argument given to the function
# $2 the second ...
body
}

示例代码:

#!/bin/sh
himi()
{
    echo "Function is ok"
    exit 0
}
himi

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: