由於某種原因,我的機器充滿了 M$ Word 臨時文件,例如:
~$Filename.docx
~$AnotherFile.docx
有人可以建議使用 find/regex 命令來搜尋 $HOME 並刪除它們嗎?
答案1
在 bash 4 或更高版本中:
shopt -s globstar
rm ~/**/'~$'*
在 zsh 或 ksh93 中,您可以rm
直接使用上面的行。
答案2
使用它來刪除所有以 開頭的檔案~$
:
find /path/to/dir -name '~$*' -delete