本篇的配置主要集中在如何用item2方便的下载文件,其本质是用scp命令,达到的效果是用鼠标右键文件,从菜单中可以直接选择下载,比较方便。
我的Mac是zsh的shell。$ echo $SHELL 返回:/bin/zsh 1. 首先要新增Shell Integration的功能: https://iterm2.com/documentation-shell-integration.html 2. 需要在我要ssh连接的机器上也执行这个: curl -L https://iterm2.com/shell_integration/install_shell_integration.sh | bash source ~/.iterm2_shell_integration.bash 3. 然后就可以在ssh连接上后,鼠标右键点击文件,在弹出来的菜单上选择:download with scp from hostname 4. 但是如果改了hostname和ssh端口的话,操作就会失败。这时候需要做出修改。 参考文档是:https://gitlab.com/gnachman/iterm2/-/wikis/scp-not-connecting#how-can-i-override-the-hostname 修改远程机器上的配置,我用的是bash,所以改的是这个文件:~/.profile 添加了: export iterm2_hostname=your_ip:ssh_port 标签:shell,配置,scp,iterm2,integration,items2,Mac,ssh,hostname From: https://www.cnblogs.com/saaspeter/p/16972131.html