mac iterm2 rz sz 无法上传下载问题

server/2024/11/13 16:18:13/

一、问题状况

在mac上使用brew install lrzsz命令安装后,根据网上一些文章的步骤,修改iterm2的Triggers。但是在远程服务器上执行rz命令,想将本地文件上传到服务器时,命令卡住了:

$ rz
?**B0100000023be50ive.**B0100000023be50

二、如何解决

1、安装lrzsz

brew install lrzsz##至于mac上brew工具没有安装的的,可以提前安装

2、查看lrzsz工具所在路径

brew list lrzsz  ##这一步很关键,因为路径下存在rz、sz两个工具。
term2-send-zmodem.sh和iterm2-recv-zmodem.sh两个脚本只是对这两个工具的简单封装,

3、下载iterm2-zmodem脚本文件: 脚本地址链接

下载解压后,获取到的就是上述提到的term2-send-zmodem.sh和iterm2-recv-zmodem.sh两个脚本

4、修改脚本

iterm2-recv-zmodem.sh脚本#!/bin/bash
# Author: Matt Mastracci (matthew@mastracci.com)
# AppleScript from http://stackoverflow.com/questions/4309087/cancel-button-on-osascript-in-a-bash-script
# licensed under cc-wiki with attribution required 
# Remainder of script public domainosascript -e 'tell application "iTerm2" to version' > /dev/null 2>&1 && NAME=iTerm2 || NAME=iTerm
if [[ $NAME = "iTerm" ]]; thenFILE=`osascript -e 'tell application "iTerm" to activate' -e 'tell application "iTerm" to set thefile to choose folder with prompt "Choose a folder to place received files in"' -e "do shell script (\"echo \"&(quoted form of POSIX path of thefile as Unicode text)&\"\")"`
elseFILE=`osascript -e 'tell application "iTerm2" to activate' -e 'tell application "iTerm2" to set thefile to choose folder with prompt "Choose a folder to place received files in"' -e "do shell script (\"echo \"&(quoted form of POSIX path of thefile as Unicode text)&\"\")"`
fiif [[ $FILE = "" ]]; thenecho Cancelled.# Send ZModem cancelecho -e \\x18\\x18\\x18\\x18\\x18sleep 1echoecho \# Cancelled transfer
elsecd "$FILE"/usr/local/bin/rz -E -e -b   ##/usr/local/bin/rz这个rz工具路径改为brew list lrzsz 时获取到的路径sleep 1echoechoecho \# Sent \-\> $FILE
fiiterm2-send-zmodem.sh脚本
#!/bin/bash
# Author: Matt Mastracci (matthew@mastracci.com)
# AppleScript from http://stackoverflow.com/questions/4309087/cancel-button-on-osascript-in-a-bash-script
# licensed under cc-wiki with attribution required 
# Remainder of script public domainosascript -e 'tell application "iTerm2" to version' > /dev/null 2>&1 && NAME=iTerm2 || NAME=iTerm
if [[ $NAME = "iTerm" ]]; thenFILE=`osascript -e 'tell application "iTerm" to activate' -e 'tell application "iTerm" to set thefile to choose file with prompt "Choose a file to send"' -e "do shell script (\"echo \"&(quoted form of POSIX path of thefile as Unicode text)&\"\")"`
elseFILE=`osascript -e 'tell application "iTerm2" to activate' -e 'tell application "iTerm2" to set thefile to choose file with prompt "Choose a file to send"' -e "do shell script (\"echo \"&(quoted form of POSIX path of thefile as Unicode text)&\"\")"`
fi
if [[ $FILE = "" ]]; thenecho Cancelled.# Send ZModem cancelecho -e \\x18\\x18\\x18\\x18\\x18sleep 1echoecho \# Cancelled transfer
else/usr/local/bin/sz "$FILE" -e -b    ##/usr/local/bin/rz这个rz工具路径改为brew list lrzsz 时获取到的路径sleep 1echoecho \# Received $FILE
fi

5、修改iterm2的Triggers

iterm2工具上:
Settings> Profiles -> Default -> Advanced -> Triggers 的 Edit 按钮修改内容:
rz waiting to receive.\*\*B0100
xxx/iterm2-send-zmodem.sh     ##iterm2-send-zmodem.sh的存放路径\*\*B00000000000000
xxx/iterm2-recv-zmodem.sh    #iterm2-recv-zmodem.sh的存放路径

在这里插入图片描述
至此到远程服务器上,使用rz上传本地文件成功


http://www.ppmy.cn/server/109884.html

相关文章

带权重的随机算法

假设有10名学生,其中5个男生,5个女生。 要求点到男生的概率为70%,女生的概率为30%。 给男生和女生设置权重,其中男生权重为7,女生权重为3。 public class Test02_case2 {public static void main(String[] args) th…

jenkins web界面构建job时平台展现的时间是6点,可是当前北京是14点,如何调整这个时间,如何调整 Jenkins 的时间显示

要在 Jenkins 中设置时区以确保打印的时间与北京时间一致,可以按照以下步骤操作: 方法 1:通过 Jenkins 系统设置 登录 Jenkins: 使用管理员账户登录到 Jenkins 的 web 界面。进入系统设置: 点击左侧菜单中的“管理 J…

VastBase——数据库参数调优

一、内存参数调优 数据库的复杂查询语句性能非常强的依赖于数据库系统内存的配置参数。数据库系统内存的配置参数主要包括逻辑内存管理的控制参数和执行算子是否下盘的参数: 1.逻辑内存管理参数:max_process_memory max_process_memory – shared memo…

sql 4,创建表类型

1,整数类型(类型,占有空间,范围)标准sql:int / integer 4字节 无符号 0 - 2/32-1 有符号 -2 31 / 2 / 31 -1 smallint 2字节 无符号 0 - 2/16-1 有符号 -2 17 / 2 / 17 -1mysql方言:tinyint 1字节 无符号 0 - 2/8 -1 有符号 -2 7 / 2/7-1med…

动态规划-买卖股票的最佳时机Ⅳ

题目描述 给你一个整数数组 prices 和一个整数 k ,其中 prices[i] 是某支给定的股票在第 i 天的价格。 设计一个算法来计算你所能获取的最大利润。你最多可以完成 k 笔交易。也就是说,你最多可以买 k 次,卖 k 次。 注意:你不能同…

grpc-spring 通信(选型,grpc-ecosystem/grpc-spring)

需求 需要一个在稳定网络环境里高性能且开发和部署成本较小,且多平台,且对视频传输和消息订阅和推送的支持比较好的, 一套环境 先说结论因为结论先得到的, 问AI了, 发现一个新东西gRPC ,看了下非常好。 再说过程&…

【GPT】Coze使用开放平台接口-【2】创建工作流-语音伪造检测工作流

在Coze使用开放平台接口-【1】创建插件,我们已经成功创建了开放平台的插件,也创建了对应的工具。本文档就根据创建好的插件,来创建对应的工作流,来让接口能够用起来。 下面直接用现成的插件快商通AI开放平台,来创建语音…

MFC工控项目实例之七点击下拉菜单弹出对话框

承接专栏《MFC工控项目实例之六CFile添加菜单栏》 1、在SEAL_PRESSUREDlg.h文件中添加代码 class CSEAL_PRESSUREDlg : public CDialog { ...afx_msg void OnTypeManage(); ... } 2、在SEAL_PRESSUREDlg.cpp文件中添加代码 BEGIN_MESSAGE_MAP(CSEAL_PRESSUREDlg, CDialog)//…