You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
# check for common problems + junk
|
|
|
|
echo "== Dangling symlinks in /etc"
|
|
symlinks -r /etc | grep ^dangling | egrep -v 'blkid.tab|/var/log/dropbear'
|
|
|
|
echo "== Trashes"
|
|
du -s /home/*/.local/share/Trash | awk '{ if ($1 > 100000) { print } }'
|