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
do
  wlanip=$wlanip$line
done < ./wlanip.txt

 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/289052.html

(0)
上一篇 2022年9月12日
下一篇 2022年9月12日

相关推荐

发表回复

登录后才能评论