|
|
|
|
|
by mananaysiempre
1064 days ago
|
|
> This works: ssh host -- ls "folder\ name"
> This also works: ssh host -- ls \"folder name\"
Uh, why not ssh host -- ls '"folder name"'
? Single quotes are the shell’s ultimate bulk “no touchy” escape, so if you don’t need them in the inner command, it seems easier to use them for everything. (Also when passing programs to sed, awk, jq, xmlstarlet, etc.) |
|