#!/bin/ksh
#
#ident	"@(#)free_spc	1.5	04/12/08 SMI"
#
# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
#
# return diretory with most free space
#
#
df -kl | grep -w /dev/dsk | sort -r -k 4,4 | awk '{print $6}' | head -n 1

