Bash,运行脚本,参数从本地到SSH HOST。

时间:2017-10-16 14:56:01

标签: bash variables ssh parameters host

所以我在主机上100%运行脚本时遇到问题。我发现处理案件的唯一方法是

cat script.sh | ssh -tt nameofhost

和script.sh包含

#!/bin/bash
sudo su anotheracc
cd /path/to/that/script
./thatscript.sh [my specific parameter eg. "7021"]

我的问题是。如何使参数(7021)不是永久性的,而是变量的。如果我必须有三个或四个文件在1个脚本上工作并不重要,它将极大地提高我的移动性。

如何进行I / O重定向,还让./thatscript.sh用这个变量执行它?

0 个答案:

没有答案