Remove old home directories

Find home directories of deleted users

find /home -mindepth 1 -maxdepth 1 -type d -nouser

Delete old home directories

find /home -mindepth 1 -maxdepth 1 -type d -nouser -exec rm -fr {} \;

Links

  • [[2025-W41]]