更新时间:2025-04-04 13:12:34
小伙伴们是否遇到过需要在Linux服务器和Windows本地之间传输文件的场景?别担心,`scp`命令就是你的救星!😊 使用`crt`工具连接到Linux服务器后,只需简单几步,就能轻松完成文件的上传和下载。
首先,上传文件到Linux服务器。打开终端输入:
`scp C:\local\file\example.txt username@server:/path/to/destination`
这样,`example.txt`就会乖乖地出现在Linux的指定路径啦!✨
反过来下载文件也超简单:
`scp username@server:/path/to/file/example.txt C:\local\destination\`
文件就从Linux服务器飞回了你的Windows电脑!🙌
通过这种方式,无论是代码备份还是配置文件同步,都能高效搞定。快来试试吧!💡 有了`scp`和`crt`组合,跨系统文件传输不再是难题!💪
Linux Windows 文件传输 scp命令