将文件从远程服务器写入本地目录?


2

我想对远程服务器上的日志文件执行一些grep-magic,并将结果写入计算机上的本地文件。

有没有比我的3步解决方案更简单的方法:

  1. grep在远程服务器上执行-magic和write文件
  2. 从远程复制到本地 scp
  3. 删除远程文件

Answers:


3

只需在远程服务器中执行命令ssh并在本地存储输出:

ssh myuser@thatserver 'grep "aa"' > ~/myoutput.res
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.