6

假设我们有一个 tsv 文件

1    2    3
1    2    3

我们想echo $1 $2 $3对每个 tsv 文件行做一些操作。

如何在bash中做这样的事情?

4

1 回答 1

7

这可以使它:

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
于 2013-06-14T11:06:34.223 回答