[Help] Bulk chmod when migrating from NTFS
At long last I'm finally switching operating system for my gaming PC. I have a lot of photos and such saved that have been moved from an NTFS drive. Is there any tool out there to help me fix the permissions of these files according to file type in bulk?
Your things may be owned by root and have unusual permissions.
So, to make your NTFS drive be owned by your user and group and to set the permissions you can:
chmod -R [mode] /dir/pathIf you need finer control than recursive
chmod(see other replies), you can also usefindto match precisely which files/folders you want and use the-execparameter to runchmodon thoseI wanted to write the same thing. E.g., you can run this in bash to set the permissions for all .conf files to 600:
Chmod works recursively.
What modes exactly are you trying to set? Why do you need different perms based on the file type?
Not like you need another utility to do this, but I highly recommend you checkout fd. It's badass;
-e jpgis clearly the file extensions you want,-xis to execute a command with each result. You can also use-Xwhich executes a command using all the files found as a single argument;