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 文件读取批量处理的主要内容,如果未能解决你的问题,请参考以下文章

读取循环时的Shell脚本仅执行一次

Java 循环读取文件导致内存溢出!

Shell读取配置文件的方法

matlab中怎样批量处理文件?

Matlab中如何批量读取文件夹中的文件进行处理?

Python3自动化_文件批量处理(文本PDF;读取筛选导出)