逐行读取文件Bash

时间:2017-07-31 16:36:32

标签: bash loops

我无法读取.txt文件并逐行读取每个字段。每个字段的格式为x:y:z:a:b:c并且我已成功地将字段的每个部分拆分为数组,方法是使用冒号作为“拆分点”我的脚本成功检索数据I需要从行,但它只迭代.txt文件一次 - 因为只读入第一行/字段。循环构造如下:

while read -r ACCOUNT
do
     #ACCOUNT is split, certain elements are stored in variables, and then 
     echo'd out to another .txt file

done < filelocation/filename.txt

关于如何调整while循环的任何指针,以便读入.txt文件中的每一行?

0 个答案:

没有答案