2.shell编程-函数的高级用法

2.1.函数的定义和使用

函数基本使用

[[email protected]_0_9_centos ~]# test()
> {}
-bash: syntax error near unexpected token `{}‘
[root@VM_0_9_centos ~]# test() {}
-bash: syntax error near unexpected token `{}‘
[root@VM_0_9_centos ~]# test()
> {
>     echo "test function"
> }
[root@VM_0_9_centos ~]# test
test function
[root@VM_0_9_centos ~]# function greeting
> {
>     echo "hello world"
> }
[root@VM_0_9_centos ~]# greeting
hello world
[root@VM_0_9_centos ~]# 

实例一:写一个守护进程,nginx如果关闭自动开启

vim nginx_daemon.sh

#!/bin/bash
#

#运行脚本的进程id,如果脚本名字有nginx字样,也需要把这个过滤掉
this_pid=$$

while true
do

ps -ef |grep nginx |grep -v grep | grep -v $this_pid &> /dev/null

if [ $? -eq 0 ];then
    echo "Nginx is running well!"
    sleep 3
else
    systemctl start nginx
    echo "Nginx is down,start it....."
fi
done

把这个脚本放到后台运行

nohup sh nginx_daemon.sh &

关闭后查看

tail -f nohup.out

2.2.向函数传递参数

shell中传参

function name
{
    echo "hello $1"
    echo "hello $2"
}

函数调用

name derek alice

举例

[[email protected]_0_9_centos shell_learn]# function greeting
> {
>     echo "Hello $1"
> }
[root@VM_0_9_centos shell_learn]#
[[email protected]_0_9_centos shell_learn]# greeting derek
Hello derek
[root@VM_0_9_centos shell_learn]# greeting alice
Hello alice
[root@VM_0_9_centos shell_learn]# 

2.3.函数的返回值

返回值的方式

方式一:return

方法二:echo

使用return返回值

  • 使用return返回值,只能返回1-255的整数
  • 函数使用return返回值,通常只是用来供其他地方调用 获取状态,因此通常仅返回0或1;0表示成功,1表示失败

使用echo返回值

  • 使用echo可以返回任何字符串结果
  • 通常用于返回数据,比如一个字符串值或者列表值

实例一

#!/bin/bash
#

this_pid=$$

function is_nginx_running
{
    ps -ef |grep nginx |grep -v grep | grep -v $this_pid &> /dev/null

    if [ $? -eq 0 ];then
            return
    else
        return 1
    fi
}

is_nginx_running && echo "nginx is runnig...." || echo "nginx is stop!"

实例二:获取用户列表

#!/bin/bash
#

function get_users
{
    users=`cat /etc/passwd | cut -d: -f1`
    echo $users
}

user_list=`get_users`

index=1

for user in $user_list
do
    echo "The $index user is: $user"
    index=$(($index+1))
done

2.4.局部变量和全局变量

全局变量

  • 不做特殊声明,shell中变量都是全局变量
  • 大型脚本程序函数中慎用全局变量

局部变量

  • 定义变量时,用local关键字
  • 函数内和函数外存在相同的变量,函数内部覆盖函数外部变量

2.5.函数库

函数库

  • 经常使用的重复代码封装成函数文件
  • 一般不直接执行,而是由其它脚本调用
  • 库文件名的后缀是任意的,但一般使用.lib
  • 库文件通常没有可执行选项
  • 库文件无需和脚本在同级目录,只需在脚本中引用时指定

原文地址:https://www.cnblogs.com/derek1184405959/p/11099961.html

时间: 2024-10-08 12:38:49

2.shell编程-函数的高级用法的相关文章

Shell编程中Shift的用法

Shell编程中Shift的用法 Bash中,数组变量的赋值有两种方法: (1) name = (value1 ... valuen) 此时下标从0开始 (2) name[index] = value 下面以一个简单的脚本来说明,脚本内容如下: #!/bin/sh until [ $# -eq 0 ] do echo "第一个参数为: $1 参数个数为: $#" shift done 执行以上程序x_shift.sh: [[email protected] test]# ./test

shell编程函数与数组

1.shell中函数 (1)shell中函数的语法 语法一: 函数名(){ 指令 return n } 语法二: function 函数名(){ 指令 return n } (2)shell中函数的调用执行 1)直接执行函数名即可,在执行函数时,不要带小括号,函数定义及函数体必须要在执行的函数名前定义. 2)带参数的函数的执行方法:函数名  参数1  参数2 (3)函数带参数的说明 1)在函数体重,位置函数都可以是函数的参数 2)父脚本的参数在函数中则临时地被函数参数所掩盖或隐藏 3)$0比较特

Shell 编程 函数

本篇主要写一些shell脚本函数的使用. 函数调用 #!/bin/bash sum(){ s=`expr 2 + 3` echo $s } sum [[email protected] ~]# vim sum.sh [[email protected] ~]# chmod +x sum.sh [[email protected] ~]# ./sum.sh 5 传递参数 #!/bin/bash sum(){ s=`expr $1 + $2` echo $s } sum 2 3 [[email pr

linux之shell编程select和case用法

shell里的select用法: 语法: #i/bin/bash select 变量 in 列表 do     要执行的语句      done 举例: #!/bin/bash echo "What is your favourite OS?" select var in "windows" "Linux" "Gnu Hurd" "Free BSD" "Other"; do    ech

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

1. shell函数的返回值: 一般情况下,返回0表示运行成功,返回非0表示出现故障.对于返回值的查看,用$?命令. 2. shell函数的传入参数:       用脚本的位置参数作为传入参数,即:$1,[email protected] 3. shell语言的插入排序程序: #! /bin/bash function insertsort() { echo "please input a list: " read -a list for((i=1;i<${#list[@]};i

shell编程--函数篇

一:函数分类 本地函数(本地变量)local 变量名.本地函数中对变量的修改,赋值只在当前函数运行期间有效.func1 () { local name=test;echo "func1:name=$name"; local age=18;echo "func1:age=$age"; echo $$;} 全局函数(本地变量)不加local及declare -i(仅限整数数字) 默认为全局函数,而declare -ig也为全局函数(本地变量).全局函数对变量的修改及赋值

网易云课堂_C++开发入门到精通_章节2:引用和函数的高级用法

课时6函数重载 函数重载 在C语言头文件中的extern "C" //常见的C语言头文件格式 #ifndef _FUNC_ #define _FUNC_ #ifdef __cplusplus extern "C" { #endif // __cplusplus void func(); #ifdef __cplusplus } #endif // __cplusplus #endif

Shell编程之--“grep-awk-sed” 基础用法汇总-菜鸟入门级

Python自动化开发课堂笔记【Day08】 - Python进阶(面向对象的高级用法,网络编程)

面向对象的高级用法 1. __str__ 只要执行打印对象的操作,就会触发该对象类中的__str__方法(也就是对象的绑定方法)它是一种默认的方法,默认的打印输出为<__main__.Foo object at 0x003EE350>,但是如果将该绑定方法在类中重写的话,要求必须有以字符串类型的返回值,返回形式可以自己设定. class Foo: def __init__(self,name,age): self.name = name self.age = age def __str__(s