shell 文件读取批量处理
Posted tonyauto
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 文件读取批量处理相关的知识,希望对你有一定的参考价值。
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 文件读取批量处理的主要内容,如果未能解决你的问题,请参考以下文章