GNU/Linux >> Linux の 問題 >  >> Linux

Unix でスクリプトをリモートで実行し、ローカルで出力を取得しますか?

これは SSH のデフォルトです。出力をリモートでリダイレクトする場合は、リダイレクト記号 (通常は ">") をコマンド引用符の中に入れます。

例:

ssh remote_host "ls > /tmp/file_on_remote_host.txt"

出力を Windows ホストでローカルに保存するには、

ssh remote_host "ls" > .\file_on_local_host.txt

stderr をリモートで結合し、それと stdout をローカルに保存するには、

ssh remote_host "ls 2>&1" > .\combined_output_on_local_host.txt

私が探していたのは、パテのサイドキック、plink.exe です。 .端末エミュレータのように動作するパテとは異なり、 plink 通常の (非対話型) CLI プログラムのように機能します。

それを使用すると、 cmd.exe でこれを実行できます ローカルに保存されたリモート コマンド出力を取得します。

\> plink remote_host "ls -l" > log.txt

何よりも、これは ssh で機能します telnet と同様 !

参考までに、これらは利用可能なオプションです:

PuTTY Link: command-line connection utility
Release 0.59
Usage: plink [options] [[email protected]]host [command]
       ("host" can also be a PuTTY saved session name)
Options:
  -V        print version information and exit
  -pgpfp    print PGP key fingerprints and exit
  -v        show verbose messages
  -load sessname  Load settings from saved session
  -ssh -telnet -rlogin -raw
            force use of a particular protocol
  -P port   connect to specified port
  -l user   connect with specified username
  -batch    disable all interactive prompts
The following options only apply to SSH connections:
  -pw passw login with specified password
  -D [listen-IP:]listen-port
            Dynamic SOCKS-based port forwarding
  -L [listen-IP:]listen-port:host:port
            Forward local port to remote address
  -R [listen-IP:]listen-port:host:port
            Forward remote port to local address
  -X -x     enable / disable X11 forwarding
  -A -a     enable / disable agent forwarding
  -t -T     enable / disable pty allocation
  -1 -2     force use of particular protocol version
  -4 -6     force use of IPv4 or IPv6
  -C        enable compression
  -i key    private key file for authentication
  -noagent  disable use of Pageant
  -agent    enable use of Pageant
  -m file   read remote command(s) from file
  -s        remote command is an SSH subsystem (SSH-2 only)
  -N        don't start a shell/command (SSH-2 only)
  -nc host:port
            open tunnel in place of session (SSH-2 only)

はい、putty ssh クライアントを使用すると、スクリプトが生成するコマンド ライン出力が表示されます。スクリプトの実行後に終了コードを取得するには、次のように入力します。

echo $?

Linux
  1. LinuxでSSHポートを変更する方法

  2. SSHトンネリングを設定する方法

  3. Ssh – Ssh経由で接続した直後にスクリプトを実行する方法は?

  1. サブシェルの出力をプロセスにリダイレクトしますか?

  2. 入力が「はい」の場合、スクリプトを再実行しますか?

  3. Sshを介して複数のサーバーで同じスクリプトを実行しますか?

  1. BashスクリプトでPgrep出力を変数に正しく取得できないのはなぜですか?

  2. Linux で SSH 経由で X アプリケーションを実行できない

  3. シェルスクリプトの並列実行