How to execute a command only on directories in Linux recursively

 This command will add group executable permissions only to directories recursively:

sudo find ./ -type d -exec chmod g+x {} + 

No comments:

Post a Comment

Setting program_name in mysql session_connect_attrs allows you to see the name of the program connected

I am using mysql for quite some time now. I have noticed that looking at client connections using mysql workbench so an interesting column ...