0% found this document useful (0 votes)
100 views1 page

Bashrc Fixed

This bashrc file defines aliases and environment variables for a ProMAX seismic data processing software. It sets aliases for common commands like rm, cp and mv. It then checks for and sources a global bashrc file. The rest of the file sets environment variables to configure paths and licenses for ProMAX if its home directory is found.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
100 views1 page

Bashrc Fixed

This bashrc file defines aliases and environment variables for a ProMAX seismic data processing software. It sets aliases for common commands like rm, cp and mv. It then checks for and sources a global bashrc file. The rest of the file sets environment variables to configure paths and licenses for ProMAX if its home directory is found.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

# .

bashrc
# User specific aliases and functions
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
export PROMAX_HOME=/apps/ProMAX
if [ -d $PROMAX_HOME ] ; then
PROMAX_SCRATCH_HOME=$PROMAX_HOME/scratch
PROMAX_DATA_HOME=/data/PM_Data
PVM_ROOT=$PROMAX_HOME/sys
PROMAX_PATH=$PROMAX_HOME/sys/bin:$PROMAX_HOME/sys/exe:$PROMAX_HOME/port/bin
LIBPATH=$PROMAX_HOME/sys/lib:/usr/X11R6/lib:/usr/X11R6/LessTif/Motif1.2/lib:$LIB
PATH
LD_LIBRARY_PATH=$PROMAX_HOME/sys/lib:$LD_LIBRARY_PATH
XFILESEARCHPATH=$PROMAX_HOME/port/lib/X11/%T/%N%S
LM_LICENSE_FILE=$PROMAX_HOME/license.dat
LGC_PD_SERVICE=lgc_pd
LGC_PD=lgc_pd
PATH=$PATH:$PROMAX_PATH
export PROMAX_SCRATCH_HOME PROMAX_PATH LIBPATH LD_LIBRARY_PATH XFILESEARCHPATH L
GC_PD_SERVICE LGC_PD LM_LICENSE_FILE PATH MANPATH
alias promax='$PROMAX_HOME/port/bin/Promax &'
alias promax3d='$PROMAX_HOME/port/bin/Promax -o 3d &'
alias promaxvsp='$PROMAX_HOME/port/bin/Promax -o vsp &'
alias promax4d='$PROMAX_HOME/port/bin/Promax -o 4d &'
fi

You might also like