我需要搜索一个数组,然后一旦我找到我正在寻找的内容,读取该元素加上几个相同的数组并将所有内容写入文件。
这是我到目前为止所拥有的
if [ -e "${EPH_DIR}" ]
then
i=0
while read line
do
FILE[$i]="$line"
i=$(($i+1))
done < ${EPH_DIR}
fi
for i in ${FILE[*]}
do
echo "$i"
if [[ $i == ${SAT} ]]
then
echo "Found it: $i"
fi
done