Guest User

Untitled

a guest
Dec 27th, 2016
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.72 KB | None | 0 0
  1. cat ~/.bashrc
  2. # ~/.bashrc: executed by bash(1) for non-login shells.
  3.  
  4. # Note: PS1 and umask are already set in /etc/profile. You should not
  5. # need this unless you want different defaults for root.
  6. # PS1='${debian_chroot:+($debian_chroot)}\h:\w\$ '
  7. # umask 022
  8.  
  9. # You may uncomment the following lines if you want `ls' to be colorized:
  10. # export LS_OPTIONS='--color=auto'
  11. # eval "`dircolors`"
  12. # alias ls='ls $LS_OPTIONS'
  13. # alias ll='ls $LS_OPTIONS -l'
  14. # alias l='ls $LS_OPTIONS -lA'
  15. #
  16. # Some more alias to avoid making mistakes:
  17. # alias rm='rm -i'
  18. # alias cp='cp -i'
  19. # alias mv='mv -i'
  20. alias ls="ls --color=auto"
  21. alias ll='ls -alF'
  22. alias l='ls -CF'
  23.  
  24. PATH=$PATH:/opt/jre1.8.0_112/bin
  25. JAVA_HOME=/opt/jre1.8.0_112
Advertisement
Add Comment
Please, Sign In to add comment