1 2 3 4 5 6 7 8 9 |
# 1. 更新软件包列表并安装依赖 sudo apt update && sudo apt install expect nmon -y # 2. 设置别名(已优化单行命令) echo 'alias nmon="expect -c '\''spawn nmon; send \"c\"; send \"m\"; send \"n\"; send \"t\"; interact'\''"' >> ~/.bashrc source ~/.bashrc # 3. 执行测试 nmon # 自动输入 cmnt 并进入交互界面 |
发表回复