多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
``` bash # linux中查看IP地址 ifconfig (通常使用) ip addr (可以代替ifconfig)可以简写成ip a # 过滤出IP地址,可用于写shell脚本。 ifconfig -a | grep inet | grep -v 127.0.0.1 | grep -v inet6 | awk '{print $2}'|tr -d "addr:"|awk 'BEGIN{RS="\n";ORS=" ";}{print $0}' ```