Advertisement
acarrunto

linux command (manjaro)

Jul 17th, 2022 (edited)
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. CH1:
  2.  
  3. pwd
  4. whoamihttps://pastebin.com/
  5. cd ../../.. (retroceder 3 lugares, can be put more if its posssible)
  6. ls -l -a
  7. whereis
  8. which
  9. find
  10. grep
  11. ps
  12. {
  13. cat > "nombre del archivo que quieres crear" // crea un archivo y luego escribes lo que quieres.
  14. - lo que quieres escribir -
  15. presionar "enter" y luego "ctrl + d" // si no se hace eso no guarda.
  16. }
  17. {
  18. cat >> "nombre del archivo que quieres crear"
  19. - lo que escribes se agregara al final del texto -
  20. presionar "enter" y luego "ctrl + d" // si no se hace eso no guarda.
  21. }
  22. touch
  23. cp
  24. mv
  25. rm
  26. rmdir
  27.  
  28. CH2: text manipulation
  29.  
  30. head
  31. tail
  32. nl
  33. sed
  34. more
  35. less // ??? no entendi muy bien
  36.  
  37. CH3: analyzing and managing networks
  38.  
  39. ip // replace the old ifconfig
  40.  
  41. // los comandos del libro esta desactualizados, revisar luego.
  42.  
  43. CH4: adding and removing software
  44.  
  45.  
  46.  
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement