tools: ssh: Minor change on ssh run tool script.

results
Pierre-Antoine Rouby 2023-07-31 11:05:11 +02:00
parent 334e7b5822
commit a3f3fca6b6
1 changed files with 7 additions and 3 deletions

View File

@ -1,10 +1,14 @@
#! /bin/sh
# > ssh-run.sh SERVER DESTDIR SOLVER INPUT
# > ssh-run.sh SERVER DESTDIR SOLVER ARGS INPUT
# First argument is the server name/addr
# The second argument is the destination directory to copy input data
# The third argument is the solver path
# The fourth argument is the input name
# The fourth argument is an solver args separate by ',' or input name
# The sixth argument is the input name or nothing
ssh $1 "cd $2; $3 $4"
args=$(echo $4 | tr ',' ' ')
echo "ssh $1 \"cd $2; $3 $args $5\""
ssh $1 "cd $2; $3 $args $5"