方法1.正常思路版本
find /usr/local/ -type f -name "*.sh" |xargs chmod +x chmod +x ` find /usr/local/ -type f -name "*.sh"` find /usr/local/ -type f -name "*.sh" -exec chmod +x {} \;
可是这个方法不严谨,因为有的脚本不是以.sh结尾的。
方法2.精确方法
通过file命令查看文件类型,通过awk、sed、grep过滤出包含shell script的然后授予x权限。
find /usr/local/ -type f |xargs file |awk -F: ‘/shell.script/{print $1}‘|xargs chmod +x chmod +x ` find /usr/local/ -type f |xargs file |awk -F: ‘/shell.script/{print $1}‘`
备注
今天是每日一题陪伴大家的第102天,期待你的进步。
对于题目和答案的任何疑问,请在博客评论区留言。
往期题目索引
http://lidao.blog.51cto.com/3388056/1914205
时间: 2024-10-27 03:27:44