zoukankan      html  css  js  c++  java
  • linux shell中自定义函数简单例子

    1、

    root@PC1:/home/test# ls
    test.sh
    root@PC1:/home/test# cat test.sh
    #!/bin/bash
    #using a function in a script
    
    function func1 {                                     ## shell自定义函数的格式之一是 function + 函数名 {command}
            echo "this is an example of a function"
            }
    
    for ((i = 1; i <= 5; i++))
    do
    func1                                  ## 利用for循环连续调用函数5次
    done                     ## 定义函数的目的是实现代码的复用,避免重复写command
    root@PC1:/home/test# ls
    test.sh
    root@PC1:/home/test# cat test.sh
    #!/bin/bash
    #using a function in a script
    
    function func1 {
            echo "this is an example of a function"
            }
    
    for ((i = 1; i <= 5; i++))
    do
    func1
    done
    root@PC1:/home/test# bash test.sh   ## 执行效果
    this is an example of a function
    this is an example of a function
    this is an example of a function
    this is an example of a function
    this is an example of a function
  • 相关阅读:
    Git引用
    如何查看Git对象
    Git是如何存储对象的
    图形化的Git
    git中找回丢失的对象
    Git的Patch功能
    ES查看配置和查看全部配置
    增删改查
    Elasticsearch增、删、改、查操作深入详解
    ES博客链接
  • 原文地址:https://www.cnblogs.com/liujiaxin2018/p/15809248.html
Copyright © 2011-2022 走看看