mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-26 05:07:35 +00:00
Co-authored-by: Daniel Imms <Tyriar@users.noreply.github.com> Co-authored-by: Daniel Imms <2193314+Tyriar@users.noreply.github.com>
30 lines
197 B
Bash
30 lines
197 B
Bash
### Case 1
|
|
a b\\ c
|
|
|
|
### Case 2
|
|
a "b"
|
|
|
|
### Case 3
|
|
a 'b'
|
|
|
|
### Case 4
|
|
a $'b'
|
|
|
|
### Case 5
|
|
a $commit
|
|
|
|
### Case 6
|
|
a $$
|
|
|
|
### Case 7
|
|
a $((b))
|
|
|
|
### Case 8
|
|
a $(b)
|
|
|
|
### Case 9
|
|
a \`b\`
|
|
|
|
### Case 10
|
|
a $(\`b\`)
|