假设我们有一个 tsv 文件
1 2 3
1 2 3
我们想echo $1 $2 $3
对每个 tsv 文件行做一些操作。
如何在bash中做这样的事情?
这可以使它:
while read -r a b c
do
echo "first = $a second = $b third = $c"
done < file
$ while read -r a b c; do echo "first=$a second=$b third=$c"; done < file
first=1 second=2 third=3
first=1 second=2 third=3
由于分隔符是一个制表符,因此您不需要使用IFS
. 如果它是例如 a |
,你可以这样做:
$ cat file
1|2|3
1|2|3
$ while IFS='|' read -r a b c; do echo "first=$a second=$b third=$c"; done < file
first=1 second=2 third=3
first=1 second=2 third=3