gpt4 book ai didi

linux - 在 shell 中执行函数之前检查函数是否存在

转载 作者:IT王子 更新时间:2023-10-29 01:01:17 26 4
gpt4 key购买 nike

我想在 shell 脚本中执行一个函数之前检查它是否存在。

脚本 shell 支持吗?以及如何去做?

最佳答案

this comment 中所读,这应该是:

type -t function_name

如果它是一个函数,则返回 function

测试

$ type -t f_test
$
$ f_test () { echo "hello"; }
$ type -t f_test
function

请注意,type 提供了很好的信息:

$ type -t ls
alias
$ type -t echo
builtin

关于linux - 在 shell 中执行函数之前检查函数是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17972087/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com