bash中怎样区分系统命令和自界说函数

打印 上一主题 下一主题

主题 985|帖子 985|积分 2955

在 Bash 中,系统命令和自界说函数可以通过以下几种方式来区分:

  • 利用 type 命令
    type 命令可以表现一个命令的类型,资助区分系统命令、别名、函数、内置命令等。
  1. # 检查系统命令
  2. type ls
  3. # 输出:ls is /bin/ls
  4. # 检查自定义函数
  5. myfunc() { echo "This is a custom function"; }
  6. type myfunc
  7. # 输出:myfunc is a function
复制代码
常见输出类型

  • 系统命令:is /path/to/command(比方 ls is /bin/ls)
  • 别名:is aliased to …
  • 内置命令:is a shell builtin
  • 函数:is a function

  • 利用 command -v
    command -v 可以表现命令的路径或类型,类似于 type,但输出更简洁。
  1. # 检查系统命令
  2. command -v ls
  3. # 输出:/bin/ls
  4. # 检查自定义函数
  5. myfunc() { echo "This is a custom function"; }
  6. command -v myfunc
  7. # 输出:myfunc
复制代码
输出说明
系统命令:输出命令的路径(比方 /bin/ls)。
函数:输出函数名(比方 myfunc)。

  • 利用 declare -f
    declare -f 可以列出全部自界说函数,或者表现特定函数的界说。
  1. # 列出所有自定义函数
  2. declare -f
  3. # 检查特定函数
  4. myfunc() { echo "This is a custom function"; }
  5. declare -f myfunc
  6. # 输出:
  7. # myfunc ()
  8. # {
  9. #     echo "This is a custom function"
  10. # }
复制代码

  • 利用 which
    which 可以查找系统命令的路径,但无法识别函数。
  1. # 检查系统命令
  2. which ls
  3. # 输出:/bin/ls
  4. # 检查自定义函数
  5. myfunc() { echo "This is a custom function"; }
  6. which myfunc
  7. # 输出:(无输出,因为 which 无法识别函数)
复制代码

  • 利用 compgen
    compgen 可以列出全部可用的命令、别名、函数等。
  1. # 列出所有函数
  2. compgen -A function
  3. # 列出所有系统命令
  4. compgen -A command
复制代码

  • 检查函数是否存在
    通过 declare -F 可以检查某个函数是否已界说。
  1. myfunc() { echo "This is a custom function"; }
  2. if declare -F myfunc > /dev/null; then
  3.     echo "myfunc is a function"
  4. else
  5.     echo "myfunc is not a function"
  6. fi
复制代码
总结
方法 功能 适用场景
type 表现命令的类型(系统命令、函数、别名等) 通用检查
command -v 表现命令的路径或名称 简洁检查
declare -f 列出或表现函数的界说 检查函数界说
which 查找系统命令的路径 仅检查系统命令
compgen 列出全部命令、别名、函数等 批量检查
declare -F 检查函数是否已界说 判断函数是否存在
通过以上方法,可以轻松区分系统命令和自界说函数。

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

惊雷无声

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表