Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 //here/is$/my/file(注意 $)作为文件位置,并且在 GNUmakefile 中,我指定
//here/is$/my/file
OutputFile = //here/is$/my/file
问题是我需要以某种方式逃避 $ 。我试过 \$ 没有成功。
有谁知道如何做到这一点?
使用 $$:
OutputFile = //here/is$$/my/file