0

这是我的代码是 bash 脚本:

for string in $LIST
do
echo "$string" >> file
grep -v "#" file1 >> file
done

“file1”仅包含一个值,并且该值会迭代更改。

我在“文件”中得到的结果是:

a
1
b
2
c
3

但是,我想要这个:

a 1
b 2
c 3

提前致谢。

4

1 回答 1

2
for string in $LIST
do
  echo "$string" $(grep -v "#" file1)
done > file
于 2013-04-16T21:26:29.223 回答