karl@karl-ux303ln:~$ ssh root@domain.com -t 'command; /bin/bash mkdir hello'
/bin/mkdir: /bin/mkdir: cannot execute binary file
Connection to domain.com closed.
私は自分のサーバーにSSHで接続しようとしていますが、すぐにコマンドを実行します。
karl@karl-ux303ln:~$ ssh root@domain.com -t 'command; /bin/bash mkdir hello'
/bin/mkdir: /bin/mkdir: cannot execute binary file
Connection to domain.com closed.
私は自分のサーバーにSSHで接続しようとしていますが、すぐにコマンドを実行します。
回答:
の使用に関する問題を無視する root
、あなたの質問はまだ少し不明瞭です。実行しようとしているのかもしれません command
そしてディレクトリを作る hello
これは、次の方法で実行できます。
ssh remote ' command ; bash -c "mkdir hello" '
一方、あなたが走ろうとしているならば command
ディレクトリを作る hello
それからあなたが対話することができるシェルに残されて、あなたはこれを使うことができました:
ssh -t remote ' command ; bash -c "mkdir hello" ; bash '