| 1 | This file is command.def, from which is created command.c.
|
|---|
| 2 | It implements the builtin "command" in Bash.
|
|---|
| 3 |
|
|---|
| 4 | Copyright (C) 1987-2004 Free Software Foundation, Inc.
|
|---|
| 5 |
|
|---|
| 6 | This file is part of GNU Bash, the Bourne Again SHell.
|
|---|
| 7 |
|
|---|
| 8 | Bash is free software; you can redistribute it and/or modify it under
|
|---|
| 9 | the terms of the GNU General Public License as published by the Free
|
|---|
| 10 | Software Foundation; either version 2, or (at your option) any later
|
|---|
| 11 | version.
|
|---|
| 12 |
|
|---|
| 13 | Bash is distributed in the hope that it will be useful, but WITHOUT ANY
|
|---|
| 14 | WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|---|
| 15 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|---|
| 16 | for more details.
|
|---|
| 17 |
|
|---|
| 18 | You should have received a copy of the GNU General Public License along
|
|---|
| 19 | with Bash; see the file COPYING. If not, write to the Free Software
|
|---|
| 20 | Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
|---|
| 21 |
|
|---|
| 22 | $PRODUCES command.c
|
|---|
| 23 |
|
|---|
| 24 | $BUILTIN command
|
|---|
| 25 | $FUNCTION command_builtin
|
|---|
| 26 | $SHORT_DOC command [-pVv] command [arg ...]
|
|---|
| 27 | Runs COMMAND with ARGS ignoring shell functions. If you have a shell
|
|---|
| 28 | function called `ls', and you wish to call the command `ls', you can
|
|---|
| 29 | say "command ls". If the -p option is given, a default value is used
|
|---|
|
|---|