将 unix 文件复制粘贴到记事本

将 unix 文件复制粘贴到记事本

如何将大型unix文件(putty工具)的内容复制到记事本?

答案1

putty日志文件方式

记录数据的一种方法是在会话 > 日志记录下生成日志文件 putty。创建日志文件后,您就可以调用日志文件来获取所需的详细信息。警告一件事,记事本无法打开大于 4GB 的文本文件,您需要依赖其他工具,例如 notepad++ 或atom,或者如果您安装了 Windows 版 bash,它们将具有基于 UNIX 的工具来协助日志文件。

腻子测井

Windows 10 Bash 方式

如果您在 Windows 10 上安装了 Windows bash,则只需将 bash 窗口更改为该文件/mnt/c/Users/<username>/所在的目录即可。scp完成后,它将显示在您计算机上的文档中。

thebtm@windows10:/mnt/c/Users/thebtm/Documents$ cd /mnt/c/Users/thebtm/Documents
thebtm@windows10:/mnt/c/Users/thebtm/Documents$ scp thebtm@linux-server:~/file.txt .
thebtm@linux-server's password:
file.txt                                                100%   89KB  89.4KB/s   00:00
thebtm@windows10:/mnt/c/Users/thebtm/Documents$

其他方式

  • 使用SSH端口的SFTP程序
  • 如果文件足够小,mailx 命令可能能够从服务器提供帮助(如果已安装)

相关内容