从wendows把项目拷贝到linux权限变更
2019-06-02 本文已影响0人
博楠同学
#从wendows把项目拷贝到linux权限变更,
在项目目录下
find * -type f -print0 | xargs -0 chmod 644
find * -type d -print0 | xargs -0 chmod 755
#从wendows把项目拷贝到linux权限变更,
在项目目录下
find * -type f -print0 | xargs -0 chmod 644
find * -type d -print0 | xargs -0 chmod 755