Reparando permisos rápidamente en linux

find -type f -exec chown -v $USER:users "{}" +
find -type f -exec chmod -v 0644 "{}" +
find -type d -exec chmod -v 0755 "{}" +
linux  notas