递归更改目录中文件的权限 [英] changing permissions of files in a directory recursively

查看:33
本文介绍了递归更改目录中文件的权限的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I am trying to change the permissions of a files present in a directory and subdirectories using the below command and running into below error..can anyone help?

user@machine:/local/mnt/workspace$ find . -type f -exec chmod 644 {} ;
chmod: changing permissions of `./halimpl/ncihal/adaptation/NonVolatileStore.cpp': Operation not permitted

解决方案

you can run the following command:

 #chown -R directory_path

But it will change the permissions of directories also.

For only files, you can run.

 #find directory_path -type f -exec chmod 644 {} ;

It also looks like you dont have enough permissions. try

 #sudo find directory_path -type f -exec chmod 644 {} ;

or run the command as root user.

这篇关于递归更改目录中文件的权限的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆