热门标签
更多>
搜索结果
查询Tags标签: wlanip,共有 2条记录-
shell - 对txt文本的写入与读取
1.目标 向文本写数据,从文本读数据 2.解决写入文件#记录本地ip到txt echo `ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v inet6|awk {print $2}|tr -d "addr:"` > ./wlanip.txt读取文件#从txt读取ip wlanip="" while read line dowlanip=$wl…
2022/9/13 5:23:13 人评论 次浏览 -
shell - 参数定义报错 command not found
1.参数 wlanip = ""报错 command not found 2.解决 把 = 号的前后空格去掉即可, 赋值不允许有空格的wlanip=""
2022/9/13 5:23:12 人评论 次浏览