diff options
Diffstat (limited to 'shell/ash_test/ash-quoting/mode_x.tests')
-rwxr-xr-x | shell/ash_test/ash-quoting/mode_x.tests | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/shell/ash_test/ash-quoting/mode_x.tests b/shell/ash_test/ash-quoting/mode_x.tests new file mode 100755 index 0000000..16dae3f --- /dev/null +++ b/shell/ash_test/ash-quoting/mode_x.tests @@ -0,0 +1,14 @@ +set -x + +var1=val +var2='one two' +true %s\\n one "two 'three" four + +# assignment: +this=command +# NOT assignment, +x code should show it quoted: +"this=command" + +if true; then true; fi +# +x code should quote 'if' here: +"if" true |