这是我的代码是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
提前致谢。
答案 0 :(得分:2)
for string in $LIST
do
echo "$string" $(grep -v "#" file1)
done > file