Initial import of the ircii-pana-1.1-final source tree.

git-svn-id: svn://svn.code.sf.net/p/bitchx/code/tags/ircii-pana-1.1-final@1 13b04d17-f746-0410-82c6-800466cd88b0
This commit is contained in:
Kevin Easton
2008-02-25 09:25:32 +00:00
commit 28febcfea9
1429 changed files with 250653 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
Synopsis:
eval <commands>
Description:
EVAL takes the commands given it and passes them through EPIC's internal
inline parser before executing them. This means that variables will be
expanded once, and the command terminator (;) is honored. This has the
same effect as executing a command with INPUT_ALIASES turned on.
Examples:
To force the display of a variable when not inside an alias:
eval echo The variable's value is $foo
See Also:
set(4) input_aliases
Other Notes:
Care should be taken when using EVAL with untrusted input. If EVAL
must be used, it is important to first strip out any characters that
have special meaning to the inline parser, such as ';'. Using EVAL in
this manner can very easily lead to a hijacked client or compromised
account.