How to pass argument to batch file in ssh?

2.5k Views Asked by At

I am trying to run a on remote machine, from through commands.

sshpass -p 'password' ssh username@server < abc.bat

I want to send argument to my batch file.

sshpass -p 'password' ssh username@server < abc.bat variable1

I get error

'variable1' is not recognized as an internal or external command, operable program or batch file

In my batch file I want to read this variable1 and pass it to one exe that I use as parameter.

set var1=%1
xyz.exe %var1%

Can someone help.

1

There are 1 best solutions below

0
On
ssh username@server "abc.bat variable1"

That command will run abc.bat and provide variable1 as the first argument.

However, be wary of chaining commands like sshpass. In the following example,

sshpass -p 'password' ssh username@server "abc.bat variable1"

will "abc.bat variable1" be an argument of ssh or sshpass?? I do not know, I do not use sshpass, but it is a confusion that can occur.