diff options
Diffstat (limited to 'shell/ash_test/ash-quoting/dollar_altvalue1.right')
-rw-r--r-- | shell/ash_test/ash-quoting/dollar_altvalue1.right | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/shell/ash_test/ash-quoting/dollar_altvalue1.right b/shell/ash_test/ash-quoting/dollar_altvalue1.right new file mode 100644 index 0000000..5cd495d --- /dev/null +++ b/shell/ash_test/ash-quoting/dollar_altvalue1.right @@ -0,0 +1,16 @@ +Unquoted b c d +|b| +|c| +|d| +Unquoted 'b c' d +|b c| +|d| +Unquoted "b c" d +|b c| +|d| +Quoted b c d +|b c d| +Quoted 'b c' d +|'b c' d| +Quoted "b c" d +|b c d| |