What's the difference between bash reserved words and built-in commands?
Can I disable bash's time, and use /usr/bin/time? If not, how can I format its output?
|
What's the difference between bash reserved words and built-in commands? Can I disable bash's time, and use |
||||
|
|
Most reserved words are commands that are built into bash; if you want to use an executable that has the same name as a reserved word then either specify the full path to the executable, or escape the command with a backslash.
Also, BASH FAQ #32: "How can I redirect the output of 'time' to a variable or file?". |
||||
|
You can use |
|||
|
|