Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 shell 脚本放置在充当服务器的 linux 机器的根目录中。我想从客户端执行该脚本
可以使用 popen 来实现这个或任何其他可用的替代方法吗?
以下是如何执行此操作的示例:
ssh root@127.0.0.1 "( cd /var && chmod +x my_script.sh && ./my_script)"
您可以从客户端计算机使用“ssh(服务器)(使用路径运行的脚本/命令)”。