正则表达式中的$ 遇到makefile

前端之家收集整理的这篇文章主要介绍了正则表达式中的$ 遇到makefile前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

今天再写一个makefile 时

clean-temp:
rm ` ls -a |grep ~$`

想要完成删除所有以~ 结尾的临时文件

但是这样写不能完成,只能在terminal当中完成

提示这样的错误

/bin/sh: -c: line 0: unexpected EOF while looking for matching ``'
/bin/sh: -c: line 1: Syntax error: unexpected end of file
Makefile:2: recipe for target 'clean-temp' Failed
make: *** [clean-temp] Error 1


原因:

makefile 指挥把 $$替换成$.

所以改成:

clean-temp: rm ` ls -a |grep ~$$`就ok了!

原文链接:https://www.f2er.com/regex/359475.html

猜你在找的正则表达式相关文章