Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. $ command -v sudo
  2. /usr/bin/sudo
  3. $ command -v cd
  4. cd
  5. $ which sudo
  6. /usr/bin/sudo
  7. $ which cd
  8. /usr/bin/cd
  9. $ rpm -q --whatprovides /usr/bin/cd
  10. bash-4.3.43-4.fc25.x86_64
  11. $ (. /etc/os-release && echo $PRETTY_NAME)
  12. Fedora 25 (Workstation Edition)
  13. $ pwd
  14. /home/alan
  15. $ cd /home && pwd
  16. /home
  17. $ /usr/bin/cd /home/alan && pwd
  18. /home
  19. $ cd --help
  20. bash: cd: --: invalid option
  21. cd: usage: cd [-L|[-P [-e]] [-@]] [dir]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement