1.脚本实现
#!/bin/bash
function a() {
echo "hello a"
}
function b() {
echo "hello b"
}
funcs=(a b)
# 执行函数a和函数b
${funcs[0]}
${funcs[1]}
2.运行及其结果
$ ./example.sh
hello a
hello b
#!/bin/bash
function a() {
echo "hello a"
}
function b() {
echo "hello b"
}
funcs=(a b)
# 执行函数a和函数b
${funcs[0]}
${funcs[1]}
$ ./example.sh
hello a
hello b
本文标题:shell以字符串形式执行函数
本文链接:https://www.haomeiwen.com/subject/bpkmjltx.html
网友评论