Issue
I need to chmod ugo-rw 12 different gif and jpg files so the python terminal can access them do I HAVE TO do that for each individual one? Is it possible to grant rw permissions to multiple files at once?
Solution
You can do them all at once by providing all of the files as additional arguments to chmod after the options, for example:
chmod ugo+rw file1 file2 file3 file4 ...
Answered By - Andrew Clark Answer Checked By - Gilberto Lyons (WPSolving Admin)