chmod 777之后的补救

2014-05-22 veryyoung 更多博文 » 博客 » GitHub »

原文链接 http://veryyoung.me/blog/2014/05/22/afterchmod-777.html
注:以下为加速网络访问所做的原文缓存,经过重新格式化,可能存在格式方面的问题,或偶有遗漏信息,请以原文为准。


今天一不小心在 /opt 文件夹下执行了 chmod -R 777 *

然后。。/opt下的所有软件都无法执行了

Google得知是权限的问题,文件夹默认权限755,文件默认权限664 于是编写以下脚本

#/bin/bash  
#Auth: veryyoung
#Desc:   chmod 目录权限为755,默认文件权限为644。
function my_chmod(){  
    for file2 in `ls -a $1`  
    do  
        if [ x"$file2" != x"." -a x"$file2" != x".." ];then  
            if [ -d "$1/$file2" ];then  
                chmod  755  "$1/$file2"  
                my_chmod "$1/$file2"  
            fi  
        else 
            chmod  644  "$1/$file2"
        fi  
    done  
}  

my_chmod  "/opt"
echo ' ' 
echo "All Done." 

执行之后问题完美解决!