When I run these two commands, I get
$ type cd
cd is a shell builtin
$ type if
if is a shell keyword
It is clearly shown that cd
is a shell builtin and if
is a shell keyword. So what is the difference between shell builtin and keyword?
When I run these two commands, I get
$ type cd
cd is a shell builtin
$ type if
if is a shell keyword
It is clearly shown that cd
is a shell builtin and if
is a shell keyword. So what is the difference between shell builtin and keyword?
There's a strong difference between a builtin and a keyword, in the way Bash parses your code. Before we talk about the difference, let's list all keywords and builtins:
Builtins:
Keywords:
Notice that, for example
[
is a builtin and that[[
is a keyword. I'll use these two to illustrate the difference below, since they are well-known operators: everybody knows them and uses them regularly (or should).A keyword is scanned and understood by Bash very early in its parsing. This allows for example the following:
This works fine, and Bash will happily output
Note that I didn't quote
$string_with_spaces
. Whereas the following:shows that Bash isn't happy:
Why does it work with keywords and not with builtins? because when Bash parses the code, it sees
[[
which is a keyword, and understands very early that it's special. So it will look for the closing]]
and will treat the inside in a special way. A builtin (or command) is treated as an actual command that is going to be called with arguments. In this last example, bash understands that it should run the command[
with arguments (shown one per line):since variable expansion, quote removal, pathname expansion and word splitting occurs. The command
[
turns out to be built in the shell, so it executes it with these arguments, which results in an error, hence the complaint.In practice, you see that this distinction allows for sophisticated behavior, that wouldn't be possible with builtins (or commands).
Still in practice, how can you possibly distinguish a builtin from a keyword? this is a fun experiment to perform:
When Bash parses the line
$a -d . ]
, it sees nothing special (i.e., no aliases, no redirections, no keywords), so it just performs variable expansion. After variable expansions, it sees:so executes the command (builtin)
[
with arguments-d
,.
and]
, which, of course is true (this only tests whether.
is a directory).Now look:
Oh. That's because when Bash sees this line, it sees nothing special, and hence expands all variables, and eventually sees:
At this time, alias expansions and keyword scanning has long been performed and is not going to be performed anymore, so Bash tries to find the command called
[[
, doesn't find it, and complains.Along the same lines:
and
Alias expansion is something rather special too. You've all done the following at least once:
The reasoning is the same: alias expansion occurs long before variable expansion and quote removal.
Keyword v.s. Alias
Now what do you think happens if we define an alias to be a keyword?
Oh, it works! so aliases can be used to alias keywords! nice to know.
Conclusion: builtins really behave like commands: they correspond to an action being executed with arguments that undergo direct variable expansion and word splitting and globbing. It's really just like having an external command somewhere in
/bin
or/usr/bin
that is called with the arguments given after variable expansion, etc. Note that when I say it's really just like having an external command I only mean with respect to arguments, word splitting, globbing, variable expansion, etc. A builtin can modify the shell's internal state!Keywords, on the other hand, are scanned and understood very early, and allow for sophisticated shell behavior: the shell will be able to forbid word splitting or pathname expansion, etc.
Now look at the list of builtins and keywords and try to figure out why some need to be keywords.
!
is a keyword. It seems it would be possible to mimic its behavior with a function:but this would forbid constructs like:
(in that case, I mean
not ! true
which doesn't work) orSame for
time
: it's more powerful to have it a keyword so that it can time complex compound commands and pipelines with redirections:If
time
where a mere command (even builtin), it would only see the argumentsgrep
,^#
and/home/gniourf/.bashrc
, time this, and then its output would go through the remaining parts of the pipeline. But with a keyword, Bash can handle everything! it cantime
the complete pipeline, including the redirections! Iftime
were a mere command, we couldn't do:Try it:
Try to fix (?) it:
Hopeless.
Keyword vs alias?
What do you think happens?
Really, a builtin is like a command, except that it's built in the shell, whereas a keyword is something that allows for sophisticated behavior! we can say it's part of the shell's grammar.
man bash
calls themSHELL BUILTIN COMMANDS
. So, a "shell builtin" is just like a normal command, likegrep
, etc., but instead of being contained in a separate file, it's built into bash itself. This makes them perform more efficiently than external commands.A keyword is also "hard-coded into Bash, but unlike a builtin, a keyword is not in itself a command, but a subunit of a command construct." I interpret this to mean that keywords have no function alone, but require commands to do anything. (From the link, other examples are
for
,while
,do
, and!
, and there are more in my answer to your other question.)The command-line manual that comes with Ubuntu doesn't give a definition of keywords, however the online manual (see sidenote) and POSIX Shell Command Language standard specifications, refer to these as "Reserved Words", and both provide lists of those. From the POSIX standard:
The key here is that keywords/reserved words have special meaning because they facilitate the shell syntax, serve to signal certain blocks of code such as loops, compound commands, branching ( if/case ) statements, etc. They allow forming command statements, but by themselves - don't do anything, and in fact if you enter keywords such as
for
,until
,case
- the shell will expect a complete statement, otherwise - syntax error:On source code level, the reserved words for bash are defined in parese.y, while built-ins have whole directory dedicated to them.
Sidenote
The GNU index shows
[
as reserved word,however it is in-fact built-in command.[[
by contrast is a reserved word.See also: Differences between keyword, reserved word, and builtin?