aboutsummaryrefslogtreecommitdiffstats
path: root/builtins/eval.c
diff options
context:
space:
mode:
authorcvpcs <root@cvpcs.org>2010-06-03 02:20:07 -0500
committercvpcs <root@cvpcs.org>2010-06-03 02:20:07 -0500
commita013d4e66d2545c04e2599aa2e4a4fc50468153d (patch)
tree415d0a5af06f28f3e3b6b389ff6818e3ee774ff8 /builtins/eval.c
parent772f20abb0a3a0979c440114bf3a1cff5b3cef03 (diff)
downloadexternal_bash-a013d4e66d2545c04e2599aa2e4a4fc50468153d.zip
external_bash-a013d4e66d2545c04e2599aa2e4a4fc50468153d.tar.gz
external_bash-a013d4e66d2545c04e2599aa2e4a4fc50468153d.tar.bz2
first successful build of bash-4.1
Diffstat (limited to 'builtins/eval.c')
-rw-r--r--builtins/eval.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/builtins/eval.c b/builtins/eval.c
new file mode 100644
index 0000000..0d74d0b
--- /dev/null
+++ b/builtins/eval.c
@@ -0,0 +1,29 @@
+/* eval.c, created from eval.def. */
+#line 22 "./eval.def"
+
+#line 34 "./eval.def"
+
+#include <config.h>
+#if defined (HAVE_UNISTD_H)
+# ifdef _MINIX
+# include <sys/types.h>
+# endif
+# include <unistd.h>
+#endif
+
+#include "../shell.h"
+#include "bashgetopt.h"
+#include "common.h"
+
+/* Parse the string that these words make, and execute the command found. */
+int
+eval_builtin (list)
+ WORD_LIST *list;
+{
+ if (no_options (list))
+ return (EX_USAGE);
+ list = loptend; /* skip over possible `--' */
+
+ /* Note that parse_and_execute () frees the string it is passed. */
+ return (list ? parse_and_execute (string_list (list), "eval", SEVAL_NOHIST) : EXECUTION_SUCCESS);
+}