# .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

# Added for SPECvirt datacenter
export CP_HOME=/export/home/cp; export cp_home=$CP_HOME
export CP_BIN=/export/home/cp/bin; export cp_bin=$CP_BIN
export CP_COMMON=/export/home/cp/config/workloads/specvirt/HV_Operations/common; export cp_common=$CP_COMMON
export CP_LOG=/export/home/cp/log; export cp_log=$CP_LOG
export CP_RESULTS=/export/home/cp/results/specvirt; export cp_results=$CP_RESULTS
export CP_RHV=/export/home/cp/config/workloads/specvirt/HV_Operations/RHV; export cp_rhv=$CP_RHV
export CP_VSPHERE=/export/home/cp/config/workloads/specvirt/HV_Operations/vSphere; export cp_vsphere=$CP_VSPHERE

export PERL_LOCAL_LIB_ROOT="$PERL_LOCAL_LIB_ROOT:/root/perl5";
export PERL_MB_OPT="--install_base /root/perl5";
export PERL_MM_OPT="INSTALL_BASE=/root/perl5";
export PERL5LIB="/root/perl5/lib/perl5:$PERL5LIB";
export PATH="/root/perl5/bin:$PATH";
export MYSQL_HOME=/opt/mysql
export PATH=$MYSQL_HOME/bin:$MYSQL_HOME/support-files:/opt/createApacheCluster/hadoop/bin:$PATH

