#!/usr/bin/ksh

#------------------------------------------------------------
#returns the system time (seconds elapsed from Jan 1, 1970
#syntax: systime 
#------------------------------------------------------------ 
#---------------------------
#set the paths
#---------------------------
#--------------------------------
#set environment variables
#--------------------------------
. $WFU_PATH/global.site.ksh


#--------------------------------------
#Set the system time executable
#-------------------------------------
#OS=`uname`
#if test $OS = SunOS
#	then current_time=`$script_path/currepoch_solaris`
#fi
#if test $OS = Linux
#	then current_time=`$script_path/currepoch_linux`
#fi 
current_time=`$script_path/epoch`
echo $current_time

exit


