我有一个用全名和用户名填充的文件,文件看起来像这样
DllImport
我可以这样做一次:
Bob Smith bsmith
David Miller dmiller
...
但是我想弄清楚如何使用while循环迭代我的文件并使用变量来执行此操作。谢谢!
答案 0 :(得分:1)
你可以使用这样的东西
$ while read a b c; do echo -e "first: $a \t second: $b \t third: $c"; done << EOF
> Bob Smith bsmith
> David Miller dmiller
> EOF
first: Bob second: Smith third: bsmith
first: David second: Miller third: dmiller