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.
サーバーとして機能するLinuxマシンのルートにシェルスクリプトを配置しています。そのスクリプトをクライアント側から実行したい
popenを使用して、これまたは利用可能な他の代替アプローチを実現できますか?
クライアントマシンから「ssh(サーバー)(パスで実行するスクリプト/コマンド)」を使用できます。
これを行う方法の例を次に示します。
ssh root@127.0.0.1 "( cd /var && chmod +x my_script.sh && ./my_script)"