6-函数篇

    xiaoxiao2021-12-14  17

    #!/bin/bash FUNC () { if [ $# -ne 0 ] ; then echo "The Parameter num is : $#" for param in $@ do echo "$param" done fi } FUNC one two three FUNC $@ FUNC hello world exit 0
    转载请注明原文地址: https://ju.6miu.com/read-970656.html

    最新回复(0)