Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

bash - Run shell script (with parameters) on Windows command line via Plink

I need to execute a shell script remotely inside the Linux box from Windows

#!/bin/bash
if [ "$#" -ne 1 ]; then

    echo "Illegal number of parameters"
    exit
fi
    echo "$1"

Here is the command I ran from Windows command prompt

 cmd>   plink.exe -ssh username@host -pw gbG32s4D/ -m C:myscript.sh 5

I am getting output as

"Illegal number of parameters"

Is there any way I can pass command line parameter to shell script which will execute on remote server?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You misunderstand how the -m switch works.

It is just a way to make plink load the commands to send to the server from a local file.

The file is NOT uploaded and executed on the remote server (with arguments).

It's contents is read locally and sent to the server and executed there as if you typed it on a (remote) command line. You cannot give it arguments.


A workaround is to generate the file on the fly locally before running plink from a batch file (say run.bat):

echo echo %1 > script.tmp
plink.exe -ssh username@host -pw gbG32s4D/ -m script.tmp

Then run the batch file with the argument:

run.bat 5

The above will make the script execute echo 5 on the server.


If the script is complex, instead of assembling it locally, have it ready on the server (as @MarcelKuiper suggested) and execute just the script via Plink.

plink.exe -ssh username@host -pw gbG32s4D/ "./myscript.sh %1"

In this case, as we execute just one command, you can pass it on Plink command line, including the arguments. You do not have to use the -m switch with a (temporary) file.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...