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.
如果我在终端,我得到了这个
#index.html# Procfile bootstrap index.html
我想删除这个#index.html# 文件,我该怎么做?
打字
rm -f #index.html#
不起作用。另外,有人知道为什么它首先存在吗?我正在使用aws EC2。
#是一个特殊字符:你必须反斜杠它:
#
rm -f \#index.html#
如果此目录是 CVS 存储库的一部分并且此文件存在冲突,则可能会出现此文件(请参阅cvs update的手册页)。