Advertisement
Guest User

Untitled

a guest
Nov 15th, 2011
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. $ type -a ls
  2. ls is aliased to `ls --color=auto'
  3. ls is a function
  4. ls ()
  5. {
  6. clear;
  7. command ls --color=auto "$@"
  8. }
  9. ls is /bin/ls
  10.  
  11.  
  12. $ type -a lsh
  13. lsh is a function
  14. lsh ()
  15. {
  16. clear;
  17. command ls --color=auto "$@" | head
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement