retiolus@lemmy.cat to Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.comEnglish · 1 year agoNaming Torrentsfiles.catbox.moeimagemessage-square110fedilinkarrow-up1595
arrow-up1595imageNaming Torrentsfiles.catbox.moeretiolus@lemmy.cat to Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.comEnglish · 1 year agomessage-square110fedilink
minus-squaregears@sh.itjust.workslinkfedilinkEnglisharrow-up11·edit-21 year agoIt gets real crazy when you’re sending remote commands so you have to escape the escapes so that the remote keeps them and properly escapes the space ssh -t remote "mv /home/me/folder\\\ with \\\ spaces /home/me/downloads/
minus-squareLocustOfControl@reddthat.comlinkfedilinkEnglisharrow-up1·1 year agoYup, this is me with scp. Well, it would be if I didn’t just use asterisks to avoid that PITA.
minus-squarePoolloverNathan@programming.devlinkfedilinkEnglisharrow-up1·edit-21 year agoDoes SSH require quoting commands?
minus-squaregears@sh.itjust.workslinkfedilinkEnglisharrow-up1·1 year agoIt doesn’t for commands without spaces (i.e reboot) You might be able to escape the spaces and not use quotes, I’m not sure
minus-squarePoolloverNathan@programming.devlinkfedilinkEnglisharrow-up1·1 year agoMight be client-dependent; I’ve regularly ran commands with spaces (e.g. ssh a@a.local ssh b@b.local) without a problem.
It gets real crazy when you’re sending remote commands so you have to escape the escapes so that the remote keeps them and properly escapes the space
ssh -t remote "mv /home/me/folder\\\ with \\\ spaces /home/me/downloads/
Yup, this is me with
scp
. Well, it would be if I didn’t just use asterisks to avoid that PITA.Does SSH require quoting commands?
It doesn’t for commands without spaces (i.e
reboot
) You might be able to escape the spaces and not use quotes, I’m not sureMight be client-dependent; I’ve regularly ran commands with spaces (e.g.
ssh a@a.local ssh b@b.local
) without a problem.