本文介绍了在makefile中的sed命令模式中写入美元符号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个包含以下命令的makefile:
I have a makefile that contains this command:
sed '/^$/d'
当我运行它时,我得到了:
when I ran it I got:
sed '/^d'
sed: -e expression #1, char 3: unterminated address regex
看起来像是在解释美元符号,如何防止这种情况发生?
looks like it interprets the dollar sign, how can I prevent that from happening?
推荐答案
您必须将配方中的所有美元符号加倍,否则make将它们视为引入make变量:
You have to double all dollar signs in a recipe, otherwise make treats them as introducing a make variable:
sed '/^$$/d'
如果您搜索美元符号生成文件"或类似的文件,则实际上会找到数十个甚至数百个答案.
If you search for "dollar sign makefile" or similar you'll find tens if not hundreds of answers to virtually this exact question.
这篇关于在makefile中的sed命令模式中写入美元符号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!