Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 shell 脚本的新手,想在我的服务器上实现一个脚本,它会在以下情况下自动发送电子邮件警报:
我的文件系统是abc:/xyz/abc,我的挂载是/pqr. 如何通过脚本进行设置?
abc:/xyz/abc
/pqr
您可以使用 df 命令检查文件系统的使用情况。作为起点,您可以使用以下命令:
df -h | awk -v val=90 '$1=="/pqr"{x=int($5)>val?1:0;print x}'
如果超过阈值,上述命令将打印 1,否则打印 0。阈值在 val 中设置。
注意:请确保您的 df 输出的第 5 列是使用百分比,否则使用适当的列。