在命令中使用变量值

时间:2018-04-13 13:54:47

标签: bash shell unix command

我试图编写一个简单的脚本来读取fileSource中的行号,然后删除fileDestination中相同数量的行。

这是我的代码:

x=`wc -l < fileSource`
sed --in-place '1,$x d' fileDestination

我遇到了这种错误:

sed : -e expression #1, char 6: extra characters after command

任何人都可以告诉我,我怎样才能正确使用第二个命令中变量x的值?谢谢

0 个答案:

没有答案