Implemented search for wrong ownership files

This commit is contained in:
Kevin Veen-Birkenbach 2020-05-18 14:51:45 +02:00
parent 0628901dd5
commit e25b75a873
1 changed files with 2 additions and 0 deletions

View File

@ -6,3 +6,5 @@ echo "System check"
echo
info "Checking relevant home folders for duplicated files..."
fdupes -r "$HOME/Documents/" "$HOME/Downloads/" "$HOME/Images/" "$HOME/Desktop/" "$HOME/Music/" "$HOME/Pictures/" "$HOME/Videos"
info "Searching for files which are in \"$HOME\" but don't belong to user \"$USER\"..."
sudo find "$HOME" ! -user "$USER"