diff options
Diffstat (limited to 'tests/quote.tests')
-rw-r--r-- | tests/quote.tests | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/tests/quote.tests b/tests/quote.tests index 152ea5a..46edea7 100644 --- a/tests/quote.tests +++ b/tests/quote.tests @@ -61,3 +61,51 @@ echo "$(echo 'foo bar')" echo "$(echo 'foo\ bar')" + +# old-style command substitution parsing compatibility tests -- post bash-3.1 +recho 'foo \\ +bar' + +recho 'foo \ +bar' + +echo `recho sed -e 's/[ :]/\\ +/g'` + +echo `recho sed -e 's/[ :]/\ +/g'` + +echo `recho 'foo\\ +bar'` + +echo `recho 'foo\ +bar'` + +echo $(recho 'foo\ +bar') + +a=`echo 'a b c' | sed 's/ /\\ +/g' | grep 'b'` +echo $a +a=`echo 'a b c' | sed 's/ /\\ +/g'` +echo "$a" + +recho `echo 'a\' b` + +recho `echo '\$' bab` +recho `echo '\$foo' bab` +recho `echo '$foo' bab` + +recho `echo '\`' ab` + +recho `echo '\\' ab` + +echo `echo '${'` + +recho `echo "(\\")"` +# produces no output +: `: "\\""` +# ultimate workaround +recho `echo "(\")"` + |