Answers:
大多数保留字是内置在bash中的命令。如果要使用与保留字同名的可执行文件,则可以指定可执行文件的完整路径,也可以使用反斜杠对命令进行转义。
$ time
real 0m0.000s
user 0m0.000s
sys 0m0.000s
$ \time
Usage: time [-apvV] [-f format] [-o file] [--append] [--verbose]
[--portability] [--format=format] [--output=file] [--version]
[--help] command [arg...]
$ then
bash: syntax error near unexpected token `then'
$ \then
bash: then: command not found