mirror of
https://github.com/voideditor/void
synced 2026-05-23 17:38:23 +00:00
29 lines
197 B
Bash
29 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\`)
|