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

if [ "`uname -s`" = "SunOS" -a "`uname -r | cut -c0,1`" != "5" ]
then
  ps -ax 
else
  ps -eaf 
fi
