MacOS:删除临时Microsoft文件

时间:2017-10-11 20:18:53

标签: excel unix powerpoint macos-sierra

我的情况如下:

$ pwd /Users/user_name/Desktop

$ ls ~$file_1.xlsx ~$file_2.pptx ~$file_3.pptx

$ rm ~$file_1.xlsx rm: ~.xlsx: No such file or directory

我可以收集最好的信息,这些文件是在VPN连接期间打开的,并且在文件出现之前连接已关闭。

每个人都有权限-rw-r--r--@

无可见。

rm -rf也不起作用。

有什么方法可以摆脱这些吗?

1 个答案:

答案 0 :(得分:1)

尝试使用ls -il

查找这些文件的inode编号

然后运行以下命令:

find . -inum <i node number of the file here> | xargs rm -rf