Created
April 5, 2017 18:05
-
-
Save lovesegfault/6710af85730b8a0a55a239147ad8bb2e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# ~/.bashrc | |
# | |
# If not running interactively, don't do anything | |
[[ $- != *i* ]] && return | |
alias ls='ls --color=auto' | |
PS1='[\u@\h \W]\$ ' | |
PATH="/home/meurer/perl5/bin${PATH:+:${PATH}}"; export PATH; | |
PERL5LIB="/home/meurer/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB; | |
PERL_LOCAL_LIB_ROOT="/home/meurer/perl5${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}"; export PERL_LOCAL_LIB_ROOT; | |
PERL_MB_OPT="--install_base \"/home/meurer/perl5\""; export PERL_MB_OPT; | |
PERL_MM_OPT="INSTALL_BASE=/home/meurer/perl5"; export PERL_MM_OPT; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment