January 27, 2020 in Tips and Tricks, Ubuntu
How do I change permissions for a folder and all of its subfolders and files in one step in Linux?
The other answers are correct, in that chmod -R 755 will set these permissions to all files and subfolders in the tree. But why on earth would you want to? It might make sense for the directories, but why set the execute bit on all the files? I suspect what you really want to do is set the […]