retiolus to Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.comEnglish • 2 years agoNaming Torrentsfiles.catbox.moeimagemessage-square104fedilinkarrow-up1592
arrow-up1592imageNaming Torrentsfiles.catbox.moeretiolus to Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.comEnglish • 2 years agomessage-square104fedilink
minus-squareShaunaTheDeadlinkfedilink10•2 years agoYeah, either put quotes around it ‘/like this/you can incorporate/spaces/into your paths’ or /just\ escape/your\ spaces/like\ this
minus-square@[email protected]linkfedilinkEnglish15•2 years agoThis is fine for the most basic of use cases but once you start looping through file names or what have you, you have to start writing robust correct bash and nobody does that
minus-square@[email protected]linkfedilinkEnglish11•edit-22 years 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-square@[email protected]linkfedilinkEnglish1•edit-22 years agoDoes SSH require quoting commands?
minus-square@[email protected]linkfedilinkEnglish1•2 years 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-square@[email protected]linkfedilinkEnglish1•2 years agoMight be client-dependent; I’ve regularly ran commands with spaces (e.g. ssh [email protected] ssh [email protected]) without a problem.
minus-square@[email protected]linkfedilinkEnglish1•2 years agoYup, this is me with scp. Well, it would be if I didn’t just use asterisks to avoid that PITA.
Yeah, either put quotes around it ‘/like this/you can incorporate/spaces/into your paths’ or /just\ escape/your\ spaces/like\ this
This is fine for the most basic of use cases but once you start looping through file names or what have you, you have to start writing robust correct bash and nobody does that
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/
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 [email protected] ssh [email protected]
) without a problem.Yup, this is me with
scp
. Well, it would be if I didn’t just use asterisks to avoid that PITA.