Linux - 目录检查

时间:2016-06-17 09:20:58

标签: linux bash directory rhel

我正在尝试编写一个脚本来检查目录是否存在,并且它具有足够的文件大小。到目前为止,我已设法获得目录检查,但我也没有太多运气检查大小。

BASEDIR需要8GB和WORKDIR 4GB

you can't see scroll bar because div content is empty i hope you should write some content in .green class div content for example below

<div class="green">
     test<br />
    test<br />
    test<br />
    test<br />
    test<br />
    test<br />
    test<br />
    test<br />
    test<br />
    test<br />
    </div>

<style>
.green {
  background: green;
  width: 100%;
  height: 100px;
  overflow-y: scroll;
}
</style>

R,

1 个答案:

答案 0 :(得分:0)

我假设您要确保所选目录中有8G(4G)可用空间,而不是已经填充了8G(4G)的文件。 (见Inian对后一种情况的回答)。

您可以使用 df 返回给定文件夹的可用空间。

avail = `df "$BASEDIR" -k --output=avail | tail -1`
if (($avail >= 8*1024*1024)); then echo "Good"; else echo "Not Good"; fi