Created: 2021-09-02 | Last update: 2021-09-02
Files Handling¶
NCurses Disk Usage¶
Ncdu is a disk usage analyzer with an ncurses interface.
apt-get install ncdu
Delete Large File List - Argument list too long¶
find . -name '*'|xargs rm
Change permissions (chmod) to folders and files¶
find . -type d -exec chmod 755 {} +
find . -type f -exec chmod 644 {} +
Change Permissions and Group with UID 1000¶
chgrp 1000 -R FOLDER
chown 1000 -R FOLDER