diff options
author | Mu Qiao <qiaomuf@gentoo.org> | 2011-07-21 18:07:57 +0800 |
---|---|---|
committer | Mu Qiao <qiaomuf@gentoo.org> | 2011-08-02 15:46:29 +0800 |
commit | 81e8d87cad6f45db77cc8f0be9a382e6c44489a2 (patch) | |
tree | aa407cbab6cc8d78b523ad8deb19de7c73b120f4 /scripts | |
parent | Core: raise exception when using local outside function (diff) | |
download | libbash-81e8d87cad6f45db77cc8f0be9a382e6c44489a2.tar.gz libbash-81e8d87cad6f45db77cc8f0be9a382e6c44489a2.tar.bz2 libbash-81e8d87cad6f45db77cc8f0be9a382e6c44489a2.zip |
Parser: support '@' in non-quoted string
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/var_def.bash | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/var_def.bash b/scripts/var_def.bash index 6dc83dd..09c07c6 100644 --- a/scripts/var_def.bash +++ b/scripts/var_def.bash @@ -82,3 +82,5 @@ function foo() { echo ${bar[@]} } foo +bar=@ +echo $bar |