i-bash/builtins/eval.def

54 lines
1.6 KiB
Modula-2
Raw Normal View History

1996-08-26 18:22:31 +00:00
This file is eval.def, from which is created eval.c.
It implements the builtin "eval" in Bash.
2002-07-17 14:10:11 +00:00
Copyright (C) 1987-2002 Free Software Foundation, Inc.
1996-08-26 18:22:31 +00:00
This file is part of GNU Bash, the Bourne Again SHell.
Bash is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
2000-03-17 21:46:59 +00:00
Software Foundation; either version 2, or (at your option) any later
1996-08-26 18:22:31 +00:00
version.
Bash is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License along
with Bash; see the file COPYING. If not, write to the Free Software
2000-03-17 21:46:59 +00:00
Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA.
1996-08-26 18:22:31 +00:00
$PRODUCES eval.c
$BUILTIN eval
$FUNCTION eval_builtin
$SHORT_DOC eval [arg ...]
Read ARGs as input to the shell and execute the resulting command(s).
$END
1996-12-23 17:02:34 +00:00
#include <config.h>
#if defined (HAVE_UNISTD_H)
1998-04-17 19:52:44 +00:00
# ifdef _MINIX
# include <sys/types.h>
# endif
# include <unistd.h>
1996-12-23 17:02:34 +00:00
#endif
1996-08-26 18:22:31 +00:00
#include "../shell.h"
1996-12-23 17:02:34 +00:00
#include "bashgetopt.h"
1997-06-05 14:59:13 +00:00
#include "common.h"
1996-08-26 18:22:31 +00:00
/* Parse the string that these words make, and execute the command found. */
int
eval_builtin (list)
WORD_LIST *list;
{
1996-12-23 17:02:34 +00:00
if (no_options (list))
return (EX_USAGE);
2002-07-17 14:10:11 +00:00
list = loptend; /* skip over possible `--' */
1996-08-26 18:22:31 +00:00
/* Note that parse_and_execute () frees the string it is passed. */
1997-06-05 14:59:13 +00:00
return (list ? parse_and_execute (string_list (list), "eval", SEVAL_NOHIST) : EXECUTION_SUCCESS);
1996-08-26 18:22:31 +00:00
}