Guest User

Untitled

a guest
Jul 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. export LSCOLORS="exfxcxdxbxegedabagacad"
  2. export CLICOLOR=true
  3.  
  4. export HISTFILESIZE=1000000000
  5. export HISTSIZE=1000000
  6. export HISTCONTROL=erasedups
  7.  
  8. # Compress the cd, ls -l series of commands.
  9. alias lc="cl"
  10. function cl () {
  11. if [ $# = 0 ]; then
  12. cd && ll
  13. else
  14. cd "$*" && ll
  15. fi
  16. }
Add Comment
Please, Sign In to add comment