Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. # this is a comment
  2.  
  3. # list the files
  4. ls
  5.  
  6. # list the files with all attributes
  7. ls -la
  8.  
  9. # which directory am I current in
  10. pwd
  11.  
  12. # whoami - e.g. username, root, www-data
  13. whoami
  14.  
  15. # which version of php am i using
  16. which php
  17.  
  18. # change directory
  19. cd /new/folder/path
  20.  
  21. # home directory
  22. cd ~/
  23.  
  24. # move something - also used for renaming
  25. cp something.txt something-new-name.txt
  26.  
  27. # copy something
  28. cp something.txt something-copy.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement