Skip to content

Instantly share code, notes, and snippets.

@ShivamMistry
Created April 27, 2014 01:36
Show Gist options
  • Save ShivamMistry/11335591 to your computer and use it in GitHub Desktop.
Save ShivamMistry/11335591 to your computer and use it in GitHub Desktop.
.bashrc
#
# ~/.bashrc
#
[[ $- != *i* ]] && return
# Aliases
alias ls='ls --color=auto'
alias fucking='sudo'
alias fuckoff='poweroff'
alias die='poweroff'
alias cp="rsync -avz"
# Vars
PS1='[\u@\h \W]\$ '
export EDITOR=vim
export LANG="en_GB.UTF-8"
export PATH="$PATH:/home/shivam/.gem/ruby/2.1.0/bin"
export PRIMUS_UPLOAD=1
if [ -e /usr/share/terminfo/x/xterm-256color ]; then
export TERM='xterm-256color'
else
export TERM='xterm-color'
fi
@DirtyJerz
Copy link

Line 10 works better as:
alias fucking='sudo '

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment