回答:
ほとんどの予約語は、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