标签: bash shell unix command
我试图编写一个简单的脚本来读取fileSource中的行号,然后删除fileDestination中相同数量的行。
fileSource
fileDestination
这是我的代码:
x=`wc -l < fileSource` sed --in-place '1,$x d' fileDestination
我遇到了这种错误:
sed : -e expression #1, char 6: extra characters after command
任何人都可以告诉我,我怎样才能正确使用第二个命令中变量x的值?谢谢