#!/bin/bash # Check afs partitions for free space problems THRESHOLD=85 df -h --output=target,pcent,used,avail | grep ^/vicep | sed -e s/%// | awk "{if (\$2 > $THRESHOLD) print}" | while read partition pcent used avail; do echo "${used} used, ${avail} available. Consider resizing partition." | mail -s "$(hostname) AFS partition ${partition} ${pcent}% full" log+afs@hcoop.net done