老男孩教育每日一题-第102天-如何找出/usr/local 下面所有shell脚本文件,并设置执行权限?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了老男孩教育每日一题-第102天-如何找出/usr/local 下面所有shell脚本文件,并设置执行权限?相关的知识,希望对你有一定的参考价值。
方法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
本文出自 “李导的博客” 博客,请务必保留此出处http://lidao.blog.51cto.com/3388056/1951577
以上是关于老男孩教育每日一题-第102天-如何找出/usr/local 下面所有shell脚本文件,并设置执行权限?的主要内容,如果未能解决你的问题,请参考以下文章
老男孩教育每日一题-第125天-显示文件oldboy.txt的第20行到30行请问如何做?
老男孩教育每日一题-第97天-虚拟机使用知识点: vmware centos7虚拟机克隆系统如何修改网卡设置?