如何执行ssh和远程执行Shell脚本的功能

时间:2019-03-11 15:53:11

标签: bash shell

我有一个脚本test.sh,我正在尝试ssh并调用该脚本在同一脚本中不起作用:

#!/bin/sh

testme()
{
   echo "hello world"
}

ssh myserver "/opt/scripts/test.sh; testme"

但是我不断得到testme command not found

在ssh之后从脚本调用函数的正确方法是什么?

0 个答案:

没有答案