aboutsummaryrefslogtreecommitdiffstats
path: root/builtins/eval.c
diff options
context:
space:
mode:
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);
+}