标签: 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]
谢谢