System Admin Tools Part 11

Now I am going introduce you to a set of commands & System Admin Tools that may come handy FIND [bash]find -perm 777 -type d -exec chmod 755 {} \; #Command to change all the folders under present directory with 777 to 755 find -perm 755 -type f -exec chmod 644 {} \; #Command to […]

System Admin Tools Part 11 Read More »