summaryrefslogtreecommitdiffstats
path: root/eshtrans/main.esh
diff options
context:
space:
mode:
Diffstat (limited to 'eshtrans/main.esh')
-rw-r--r--eshtrans/main.esh9
1 files changed, 7 insertions, 2 deletions
diff --git a/eshtrans/main.esh b/eshtrans/main.esh
index 8b94861..81d002b 100644
--- a/eshtrans/main.esh
+++ b/eshtrans/main.esh
@@ -60,14 +60,14 @@ main()
#try 'foo `bar`'
#try 'foo &&'
#try '{ foo; }'
-try '( foo )'
+#try '( foo )'
#try 'for i in 1 2 3; do stuff; done'
#try 'if foo; then bar; fi'
#try 'if foo; then bar; elif baz; then qux; else quux; fi'
#try 'if ; then ; fi'
#try 'while foo; do bar; done'
#try 'while ; do ; done'
-try 'foo(){ bar; }'
+#try 'foo(){ bar; }'
#try 'case foo in bar) baz;; (qux) quux;; quux);; esac'
#try 'foo bar ( baz )'
#try 'foo $(bar)'
@@ -108,4 +108,9 @@ try 'foo(){ bar; }'
#try 'foo "`"'
#try "\"'\""
#try "foo 'bar" "baz' &&"
+#try '$(foo bar)'
+#try 'foo <<EOF' '$(bar baz)' 'EOF'
+#try '$foo'
+#try '${foo%bar baz}'
+try '$(($(foo bar) + 1))'
}