Tagged Questions
0
votes
1answer
129 views
plink automated batch script
How would I create a simple batch script(windows) to close then current plink session if it times out and reconnect automatically?
something like this:
if "plink.exe" == "false" (
"plink ...
3
votes
1answer
197 views
Passing arguments from a command prompt to remote ubuntu machine
I am trying to pass arguements to a local script to be executed on a remote machine.
The script works fine as I have tested it passing variables in manually.
I am trying to use plink for this.
I take ...
1
vote
2answers
2k views
sh: …: is not an identifier when trying to invoke shell scripts using plink
Below is my shell script that I am trying to execute using PLINK on MachineB from MachineA(Windows Machine).
#!/bin/bash
export HIVE_OPTS="$HIVE_OPTS -hiveconf mapred.job.queue.name=hdmi-technology"
...
2
votes
2answers
1k views
ssh to run shell script on remote machine and then copy the output to local machine
I am using plink to execute the shell script on the remote MachineB. And shell script is there on the MachineA(Windows Box).
C:\PLINK>plink uname@MachineB -m test.sh
Using keyboard-interactive ...
1
vote
1answer
734 views
Passing arguments to a shell script from C# process
I am stuck with a problem from many days.
I am connecting to a linux box and want to run some scripts and collect back the file generated.
Steps are
1) connect
2) run some scripts (which are ...