]> git.ipfire.org Git - thirdparty/bash.git/blob - builtins/builtin.def
8571f372a7fd64a9e847a77fda8a26232b4912ec
[thirdparty/bash.git] / builtins / builtin.def
1 This file is builtin.def, from which is created builtin.c.
2 It implements the builtin "builtin" in Bash.
3
4 Copyright (C) 1987-2002 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 builtin.c
23
24 $BUILTIN builtin
25 $FUNCTION builtin_builtin
26 $SHORT_DOC builtin [shell-builtin [arg ...]]
27 Run a shell builtin. This is useful when you wish to rename a
28 shell builtin to be a function, but need the functionality of the
29 builtin within the function itself.
30 $END
31 #include <config.h>
32
33 #if defined (HAVE_UNISTD_H)
34 # ifdef _MINIX
35 # include <sys/types.h>
36 # endif
37 # include <unistd.h>
38 #endif
39
40 #include "../shell.h"
41 #include "common.h"
42 #include "bashgetopt.h"
43
44 extern char *this_command_name;
45
46 /* Run the command mentioned in list directly, without going through the
47 normal alias/function/builtin/filename lookup process. */
48 int
49 builtin_builtin (list)
50 WORD_LIST *list;
51 {
52 sh_builtin_func_t *function;
53 register char *command;
54
55 if (no_options (list))
56 return (EX_USAGE);
57 list = loptend; /* skip over possible `--' */
58
59 if (list == 0)
60 return (EXECUTION_SUCCESS);
61
62 command = list->word->word;
63 #if defined (DISABLED_BUILTINS)
64 function = builtin_address (command);
65 #else /* !DISABLED_BUILTINS */
66 function = find_shell_builtin (command);
67 #endif /* !DISABLED_BUILTINS */
68
69 if (!function)
70 {
71 builtin_error ("%s: not a shell builtin", command);
72 return (EXECUTION_FAILURE);
73 }
74 else
75 {
76 this_command_name = command;
77 list = list->next;
78 return ((*function) (list));
79 }
80 }