码迷,mamicode.com
首页 > 系统相关 > 详细

shell 文件读取批量处理

时间:2019-07-12 09:49:49      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:url   redis   style   批量处理   bin   set   http   google   cli   

cat ./redis-keys.txt | while read myline
do
  echo ${myline}
  /usr/local/bin/redis-cli -h 000.00.00.000 -p 6379 -c set ${myline} 0
done 
cat ./urlget.txt | while read myline
do
  echo ${myline}
  curl ${myline}
  sleep 100
done

curl http://www.google.com

shell 文件读取批量处理

标签:url   redis   style   批量处理   bin   set   http   google   cli   

原文地址:https://www.cnblogs.com/tonyauto/p/11174027.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!