Advertisement
Guest User

command demo

a guest
Jan 21st, 2013
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. bash-4.2$ function date() { echo 'at the end of days...'; }
  2.  
  3. bash-4.2$ date
  4. at the end of days...
  5.  
  6. bash-4.2$ command date
  7. Mon Jan 21 17:53:38 EET 2013
  8.  
  9. bash-4.2$ env date
  10. Mon Jan 21 17:53:42 EET 2013
  11.  
  12. bash-4.2$ \date
  13. at the end of days...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement