 |
Bash: Read file line into array - Stack Overflow
I would like to read a file into a script, line by line. Each line in the file is multiple values seperated by a tab, I'd like to read each line into an array. Typical bash "read file by line" ex... ... You're very close: while IFS=$'\t' read -r -a my
stackoverflow.com |
 |