Linux Shell脚本:将文件和字符串一起写入另一个文件

时间:2013-04-16 21:23:13

标签: linux string bash file echo

这是我的代码是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

提前致谢。

1 个答案:

答案 0 :(得分:2)

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