第一种方式:
ssh [email protected] -C \"/bin/bash -s\" < ip.sh \"1\" \"2\" \"3\" >> ../logs/123.log 2>&1ssh [email protected] -C \"/bin/bash -s \'1\' \'2\' \'3\' \" < ip.sh >> ../logs/123.log 2>&1
第二种方式:
ssh [email protected] \"cat | bash /dev/stdin \'1\' \'2\' \'3\'\" < ip.sh >> ../logs/123.log 2>&1
拿走不谢