脚本不会清空包含 .deb 文件的垃圾

脚本不会清空包含 .deb 文件的垃圾

该脚本可以适用于除 .deb 文件之外的任何文件吗?

有人知道为什么吗?

#!/bin/bash
find /home/andy/.local/share/Trash/expunged/ -type f -exec rm {} \;
find /home/andy/.local/share/Trash/files/ -type f -exec rm {} \;
find /home/andy/.local/share/Trash/info/ -type f -exec rm {} \;
find /media/andy/MAXTOR_SDB2/.Trash-1000/files/ -type f -exec rm {} \;

答案1

要么是权限问题,要么是没有 .deb 文件可以清空。不知道为什么你甚至需要一个脚本来清空垃圾,除非你每小时删除数千个文件,而你只需单击“清空垃圾”即可。

相关内容