本文介绍了bash的grep的结果到数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在bash中我试图收集阵列的grep我的结果,每个细胞保持每一行。
我downloaing网址这一行

and then i want to grep the 'index' file results (other urls) into array each line per cell,what should be the correct syntax?

??

解决方案
 readarray GREPPED < <(grep "some expression" index)
 for item in "${GREPPED[@]}"
 do
     # echo
     echo "${item}"   
 done

Oh, and combine those -v greps like so:

 egrep -v '\.(jpg|gif|xml|zip|asp|php|pdf|rar|cgi|html?)'

这篇关于bash的grep的结果到数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 12:51