System/OS

개인적으로 쓰고 있는 bash_profile

by hooni posted Jan 16, 2015
?

Shortcut

PrevPrev Article

NextNext Article

ESCClose

Larger Font Smaller Font Up Down Go comment Print
개인적으로 쓰고 있는 bashrc


#!/bin/sh
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
		. ~/.bashrc
fi

# User specific environment and startup programs

export M3_HOME=$HOME/Data/Developer/maven/apache-maven-3.2.5
export M3=$M3_HOME/bin
export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home

PATH=$PATH:$HOME/bin:$M3
export PATH

SVN_EDITOR=/usr/bin/vim
export SVN_EDITOR

alias ll='ls -alp'