acme
This commit is contained in:
commit
c2271ba672
43 changed files with 886 additions and 0 deletions
38
docs/single_quote_rc_vs_sh.txt
Normal file
38
docs/single_quote_rc_vs_sh.txt
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
## RC
|
||||
## -----------------------------------------------------------------------------
|
||||
|
||||
echo $%
|
||||
/Users/ev/
|
||||
|
||||
echo ''''
|
||||
'
|
||||
|
||||
a '1
|
||||
bb '22
|
||||
ccc '333
|
||||
|
||||
|a+ ''''
|
||||
|
||||
a '1
|
||||
bb '22
|
||||
ccc '333
|
||||
|
||||
|
||||
## SH
|
||||
## -----------------------------------------------------------------------------
|
||||
|
||||
echo $%
|
||||
$%
|
||||
|
||||
echo "'"
|
||||
'
|
||||
|
||||
a '1
|
||||
bb '22
|
||||
ccc '333
|
||||
|
||||
|a+ "'"
|
||||
|
||||
a '1
|
||||
bb '22
|
||||
ccc '333
|
||||
Loading…
Add table
Add a link
Reference in a new issue