根据help command
,在 bash 的帮助下,command
可以用来触发外部程序 x,如果 x 也作为内置函数存在:
command: command [-pVv] command [arg ...]
Execute a simple command or display information about commands.
Runs COMMAND with ARGS suppressing shell function lookup, or display
information about the specified COMMANDs. Can be used to invoke commands
on disk when a function with the same name exists.
当使用 进行测试时time
,这按预期工作并使用外部程序/bin/time
,但是当我尝试时:
command echo --help
# the output is
--help
这是内置的预期行为echo
。
使用 xubuntu 22.04,bash 5.1.16/bin/echo --help
按预期工作。
我是否误解了该command
命令?或者为什么它不像宣布的那样工作?我怎样才能找到答案?
GNU bash, Version 5.1.16(1)-release (x86_64-pc-linux-gnu)
Copyright (C) 2020 Free Software Foundation, Inc.