mirror of https://github.com/ajdecon/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
475 B
20 lines
475 B
# .bashrc for VPS
|
|
|
|
# Source global definitions
|
|
if [ -f /etc/bashrc ]; then
|
|
. /etc/bashrc
|
|
fi
|
|
|
|
# User specific aliases and functions
|
|
alias ls='ls --color'
|
|
alias truecrypt='truecrypt -m=nokernelcrypto'
|
|
|
|
export EC2_HOME="$HOME/.ec2"
|
|
export JAVA_HOME="/usr/lib/jvm/java"
|
|
export PATH="$PATH:$EC2_HOME/bin"
|
|
export EC2_PRIVATE_KEY="$EC2_HOME/pk-ajdecon.pem"
|
|
export EC2_CERT="$EC2_HOME/cert-ajdecon.pem"
|
|
|
|
export PATH=$PATH:$HOME/bin:$HOME/bin/go:/usr/lib/openmpi/1.4-gcc/bin
|
|
|