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
  • 相关阅读:
    Android读书笔记三
    Android读书笔记二
    Android读书笔记一
    cpp plugin system
    houdini已放弃2
    ssh-keygen
    linux library
    software with plugin
    houdini已放弃
    C++ template
  • 原文地址:https://www.cnblogs.com/liujiaxin2018/p/15809248.html
Copyright © 2011-2022 走看看