Hello! IIUC, when I run, $ ssh host cmd arg arg arg the COMMAND (cmd arg...) will be joined locally to a single string like this, "cmd arg arg arg" and then parsed by the shell on the other end. This needs to be taken into account when running commands whose arguments contain spaces. So this won't work: $ ssh host python3 -c "print(1 + 1)" bash: -c: line 1: syntax error near unexpected token `(' bash: -c: line 1: `python3 -c print(1 + 1)' Instead, I can write this to make it work: $ ssh qnap 'python3 -c "print(1 + 1)"' 2 This gets harder to do when some arguments come from somewhere else: $ ssh qnap python3 -c "$script" Or [1]: $ ssh qnap python3 -c "$(<script.py)" When using Bash, I can rewrite the above two commands like this, $ ssh qnap python3 -c "${script@Q}" and like this, $ command=(python3 -c "$(<foo.py)") $ ssh host "${command[@]@Q}" respectively. But it gets complicated quickly. Have there ever been thoughts on automating this step? I propose a new option (-j in the example below) to the ssh command line interface. It takes the arguments of COMMAND and individually escapes them in a way that results in the original words when parsed by a POSIX shell. I.e. it would roughly convert this call $ ssh -j host cmd arg arg arg into this call [2]: $ command=(cmd arg arg arg) $ ssh host "${command[@]@Q}" What do you think? [1]: The $(<filename) is Bash-specific syntax that reads insert's the file's content into the argument list. [2]: See the "Q" operator in Chapter "Shell Parameter Expansion" in the Bash manual. https://www.gnu.org/software/bash/manual/html_node/Shell-Parameter-Expansion.html -- Michael they/them, he/him _______________________________________________ openssh-unix-dev mailing list openssh-unix-dev@xxxxxxxxxxx https://lists.mindrot.org/mailman/listinfo/openssh-unix-dev