码迷,mamicode.com
首页 > 系统相关 > 详细

Linux中查看一个目录的大小脚本

时间:2014-10-09 16:04:28      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:primary   linux   local   file   

#!/bin/bash

FILE=/usr/local/mysql

FILESIZE=`du  -s   $FILE| awk ‘{print $1}‘`|cut -f 1 -d ‘M‘

if [ $FILESIZE  -gt   20 ]; then

 echo "the file size is  more  than  the primary file"

else

 echo "the file size is less than the primary file"

fi


本文出自 “常用文档” 博客,请务必保留此出处http://yujianglei.blog.51cto.com/7215578/1561569

Linux中查看一个目录的大小脚本

标签:primary   linux   local   file   

原文地址:http://yujianglei.blog.51cto.com/7215578/1561569

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!