I need to ssh into a machine and execute a bunch of commands under sudo bash
. Here is what I've tried:
sshpass -p "vagrant" ssh [email protected] "sudo bash -i -c <<EOF
echo
ls
echo
EOF"
But it throws me 'bash: -c: option requires an argument\n'
. How can I fix this?
You need to remove
-c
from your command line to make it accept heredoc:Also you may remove
-i
(interactive) option too.bash -c
expects you to provide all commands on command line so this may work too: