如何通过 SSH 访问远程运行本地 bash 脚本?
我可以在运行脚本之前更改文件夹吗?
答案1
您可以使用此命令访问您的特定文件夹(例如 html),然后运行本地 bash 脚本:
ssh user@remote_host 'cd html && bash ' < ../snippets/myCustomBash.sh
如何通过 SSH 访问远程运行本地 bash 脚本?
我可以在运行脚本之前更改文件夹吗?
您可以使用此命令访问您的特定文件夹(例如 html),然后运行本地 bash 脚本:
ssh user@remote_host 'cd html && bash ' < ../snippets/myCustomBash.sh