Risposte:
Le parole più riservate sono comandi incorporati in bash; se si desidera utilizzare un eseguibile con lo stesso nome di una parola riservata, specificare il percorso completo dell'eseguibile o uscire dal comando con una barra rovesciata.
$ 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
Inoltre, BASH FAQ # 32: "Come posso reindirizzare l'output di 'time' su una variabile o un file?" .