Advertisement
Guest User

Untitled

a guest
Apr 21st, 2011
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. #
  2. # ~/.bashrc
  3. #
  4.  
  5. export BROWSER="pcmanfm"
  6. export EDITOR="nano"
  7. export PATH="$PATH:$HOME/.local/bin"
  8. export GTK2_RC_FILES="$HOME/.gtkrc-2.0"
  9. export GTK_IM_MODULE="xim"
  10.  
  11. # If not running interactively, don't do anything
  12. [[ $- != *i* ]] && return
  13.  
  14. alias ls='ls --color=auto'
  15. alias dd='dcfldd'
  16. PS1='[u@h W]$ '
  17.  
  18. export TERM="rxvt"
  19.  
  20. #xsu : exécuter une commande en root ; execute command as root
  21. xsu () { su -c "$*";}
  22.  
  23. #upload file to ompldr.org
  24. ompload() { curl -# -F file1=@"$1" http://ompldr.org/upload|awk '/Info:|File:|Thumbnail:|BBCode:/{gsub(/<[^<]*?/?>/,"");print $1}';}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement