pavani created the topic: how to change the permission of multiple files which has 655 to 755
Hi
How to change the permission of files which has different permission but i need to change only those files which has permission 655 to 755
rajeshkumar replied the topic: Re: how to change the permission of multiple files which has 655 to 755
Hi Pavani,
I know this is late reply.. but may or may not be helpful now...
please find script as below;
for myfile in `find . -perm 655`
do
chmod 755 $myfile
done
Regards,
Rajesh Kumar
Twitt me @ twitter.com/RajeshKumarIn
Latest posts by Rajesh Kumar (see all)
- Best AI tools for Software Engineers - November 4, 2024
- Installing Jupyter: Get up and running on your computer - November 2, 2024
- An Introduction of SymOps by SymOps.com - October 30, 2024