September 2009
Beginner
942 pages
85h 34m
English
builtin
builtincommand[arguments... ]
Run the shell built-in command command with the given arguments. This allows you to bypass any functions that redefine a built-in command’s name. The command command is more portable.
This function lets you do your own tasks when you change directory:
cd ( ) {
builtin cd "$@" Actually change directory
pwd Report location
}