AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
``` 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}' ```