답변:
대부분의 예약어는 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
또한 BASH FAQ # 32 : " 'time'출력을 변수 나 파일로 리디렉션하려면 어떻게해야합니까?" .