计算/etc/目录中所有*.conf配置文件所占用的总空间大小
1.用vi创建一个名为confsize.sh脚本,截图如下:
内容如下:
#!/bin/bash
sizenums=$(ls -l $(find /etc/ -type f -a -name *.conf) | awk '{print $5}')
total=0
for i in $sizenums
do
total=$(expr $total + $i)
done
echo "total size of conf files: $total bytes."
其中:
ls -l $(find /etc/ -type f -a -name *.conf) 用于统计。conf文件的信息
ls -l $(find /etc/ -type f -a -name *.conf) | awk '{print $5}' 列出每个文件所对应的大小
2.赋予confsize.sh的x权限,并执行脚本验证效果。
检查以bash为登录shell在/opt目录中的文件数量并列出具体的数值及对应的用户账户
1、用vi创建一个名为shell.sh脚本,截图如下:
内容如下:
#!/bin/bash
DIR="/opt/"
users=$(grep "bash$" /etc/passwd | awk -F: '{print $1}')
for username in $users
do
num=$(find $DIR -user $username | wc -l)
echo "$username have $num files."
done
2、在/opt目录下临时先创建一些测试文件,以备方便验证效果:
3、给脚本shell.sh增加x权限
4、执行脚本,查看执行后的信息
欢迎关注微信公众号:小温研习社
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。