]> git.ipfire.org Git - thirdparty/bash.git/blob - builtins/builtin.def
Imported from ../bash-2.03.tar.gz.
[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, 1989, 1991 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 1, 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, 675 Mass Ave, Cambridge, MA 02139, 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
43 extern char *this_command_name;
44
45 /* Run the command mentioned in list directly, without going through the
46 normal alias/function/builtin/filename lookup process. */
47 int
48 builtin_builtin (list)
49 WORD_LIST *list;
50 {
51 Function *function;
52 register char *command;
53
54 if (!list)
55 return (EXECUTION_SUCCESS);
56
57 command = (list->word->word);
58 #if defined (DISABLED_BUILTINS)
59 function = builtin_address (command);
60 #else /* !DISABLED_BUILTINS */
61 function = find_shell_builtin (command);
62 #endif /* !DISABLED_BUILTINS */
63
64 if (!function)
65 {
66 builtin_error ("%s: not a shell builtin", command);
67 return (EXECUTION_FAILURE);
68 }
69 else
70 {
71 this_command_name = command;
72 list = list->next;
73 return ((*function) (list));
74 }
75 }