Linux shell 函數傳遞參數的幾種方式

最近總結了 shell 中 function 的傳遞變量的幾種方式 1.傳遞單個變量 2.傳遞數組變量 #!/bin/bash #trying to pass an variable.web function func() { echo 'The number of parameters is: ${#}' for line in '$@' do echo '$line' done }shell
相關文章
相關標籤/搜索