makefile中'〜'的含义是什么?

时间:2017-11-09 12:33:11

标签: makefile

我刚刚开始学习如何编写makefile。然后我按照教程on the website。我无法理解本教程中Makefile5最后一行'〜'的含义。我已阅读过解释这个通配符的GNU make,但似乎这些情况与下面的用法不符。

var customerOrderDetails = _myOrderRepository
                           .GetAll()
                           .Include(o => o.Orders)
                           .ThenInclude(l => l.OrderLines)

2 个答案:

答案 0 :(得分:1)

rm -f *〜只删除名称以波浪号(〜)

结尾的文件

答案 1 :(得分:1)

文件末尾的Tilde只是意味着它们是由文本编辑器创建的某种备份。 您可以在此处找到有关此类文件的一些讨论:What does the tilde at the end of a file name stand for?