#!/bin/ksh #************************************************** # Set-up the dialect changes for #HP-UX and AIX (df -k) vs (bdf) #************************************************** os=`uname -a|awk '{ print $1 }'` if [ $os = "OSF1" ] then dialect_df="df -k" fi if [ $os = "AIX" ] then dialect_df="df -k" fi if [ $os = "IRIX64" ] then dialect_df="df -k" fi if [ $os = "HP-UX" ] then dialect_df="bdf" fi