#!/bin/csh -f

set threshold = 300
if ($1) set threshold = $1

du | awk '{if ($1>'$threshold') print $0}'
