#!/usr/bin/sh
# OPC_WHAT_STRING="@(#)HP OpenView IT/Operations A.04.11 (09/24/98)"
###############################################################################
#
# File:         opcdf
# Description:  platform independent df command
# Language:     Bourne Shell
# Package:      HP OpenView OperationsCenter
#
# (c) Copyright Hewlett-Packard Co. 1993 - 1998
#
###############################################################################

if [ "`uname -s`" != "HP-UX" ]
then
  df 
else
  bdf 
fi
