Advertisement
claukiller

Untitled

Jan 27th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. passwd
  2. man cp
  3. apropos "copy"
  4. help cd
  5. whatis man
  6. type man
  7. info
  8. control d / exit
  9. cp file newname
  10. history
  11.  
  12. absolute cp /home/blabla /home/baba
  13. realtive cp f1 d1/f2
  14. ./ current ../a father
  15. pwd (print working directory)
  16. mkdir namme (crear)
  17. rmdir (borrar)
  18. mv source target
  19. rm
  20. mount
  21. df
  22. quota -v
  23. du / du -a
  24.  
  25. echo hello f1 (archivo f1 que pone hello)
  26. --- [owner] --- [group owner] --- [others]
  27.  
  28. chmod (change permissions) u-w c1
  29. ls -l para ver los permisos
  30. chmod u-w .
  31. u g o +- r w x
  32. chmod o + r f (file)
  33. chmod 764
  34. si eres owner y teacher se mira siempre owner primero
  35. only the owner can change
  36. rm a*f todas q empiezan por a y acaban por f
  37. ?a* all the files who has a as a second character
  38. [ab]? all the files that begin with a or b
  39. [!ab] all the characters but a and b
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement