标签: bash shell
我有一个脚本test.sh,我正在尝试ssh并调用该脚本在同一脚本中不起作用:
test.sh
#!/bin/sh testme() { echo "hello world" } ssh myserver "/opt/scripts/test.sh; testme"
但是我不断得到testme command not found
testme command not found
在ssh之后从脚本调用函数的正确方法是什么?