linux下web文件管理常用命令
时间:2007-03-13 来源:whitecoffee0828
1,同时修改多层文件及文件夹权限:
方法1
find . -exec sh -c "if [[ -d "{}" ]]; then chmod 755 "{}"; else chmod 644 "{}"; fi " \;
方法2
find ./ -type d -print|xargs chmod 755; find ./ -type f -print |xargs chmod 644
参考:http://www.linuxmine.net/2219.html
2,修改多层目录下所有php文件权限:
chmod -R 755 `find |grep .php`
3,对文件打包:
tar cvfz file.tar.gz ./file
参考:http://www.chinaitlab.com/www/techspecial/tar/
方法1
find . -exec sh -c "if [[ -d "{}" ]]; then chmod 755 "{}"; else chmod 644 "{}"; fi " \;
方法2
find ./ -type d -print|xargs chmod 755; find ./ -type f -print |xargs chmod 644
参考:http://www.linuxmine.net/2219.html
2,修改多层目录下所有php文件权限:
chmod -R 755 `find |grep .php`
3,对文件打包:
tar cvfz file.tar.gz ./file
参考:http://www.chinaitlab.com/www/techspecial/tar/
相关阅读 更多 +