Bash逐行读取文件并存储到数组中

时间:2020-08-02 22:06:55

标签: bash

尝试找出如何逐行读取txt文件并将其存储到数组中的方法: 如何修改IFS命令以接受数组?

index=0;
while IFS= read -r line; do
#echo "$line"


#let index=index+1
#echo "$index"
done < myFile.txt

echo $line[0] 

谢谢

0 个答案:

没有答案