Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.57 KB | None | 0 0
  1. 1531552@lab-4-siee245:~$ mkdir carpeta1 carpeta2 temporal
  2. 1531552@lab-4-siee245:~$ cd temporal/
  3. 1531552@lab-4-siee245:~/temporal$ pwd
  4. /home/samba/homes/1531552/temporal
  5. 1531552@lab-4-siee245:~/temporal$ touch prueba.txt
  6. 1531552@lab-4-siee245:~/temporal$ cp prueba.txt ../carpeta1/
  7. 1531552@lab-4-siee245:~/temporal$ cd ../carpeta1/
  8. 1531552@lab-4-siee245:~/carpeta1$ ls
  9. prueba.txt
  10. 1531552@lab-4-siee245:~/carpeta1$ # Pregunta 3
  11. 1531552@lab-4-siee245:~/carpeta1$ cd ..
  12. 1531552@lab-4-siee245:~$ rmdir temporal/
  13. rmdir: fallo al borrar 'temporal/': El directorio no está vacío
  14. 1531552@lab-4-siee245:~$ # No nos deja borrar el directorio porque no esta vacio
  15. s vacios
  16. cursivamente los ficheros del directorio. El mismo manual de 'rmdir' lo dice.
  17. 1531552@lab-4-siee245:~$ rm -r temporal/
  18. 1531552@lab-4-siee245:~$ # Pregunta 4
  19. 1531552@lab-4-siee245:~$ wget http://www.gutenberg.org/cache/epub/2000/pg2000.txt
  20. --2019-10-02 13:08:29-- http://www.gutenberg.org/cache/epub/2000/pg2000.txt
  21. Resolviendo www.gutenberg.org (www.gutenberg.org)... 152.19.134.47, 2610:28:3090:3000:0:bad:cafe:47
  22. Conectando con www.gutenberg.org (www.gutenberg.org)[152.19.134.47]:80... conectado.
  23. Petición HTTP enviada, esperando respuesta... 200 OK
  24. Longitud: 2198927 (2,1M) [text/plain]
  25. Grabando a: “pg2000.txt”
  26.  
  27. pg2000.txt 100%[=====================================>] 2,10M 571KB/s en 3,8s
  28.  
  29. 2019-10-02 13:08:33 (571 KB/s) - “pg2000.txt” guardado [2198927/2198927]
  30.  
  31. 1531552@lab-4-siee245:~$ cat pg2000.txt
  32. The Project Gutenberg EBook of Don Quijote, by Miguel de Cervantes Saavedra
  33.  
  34. This eBook is for the use of anyone anywhere at no cost and with
  35. almost no restrictions whatsoever. You may copy it, give it away or
  36. re-use it under the terms of the Project Gutenberg License included
  37. with this eBook or online at www.gutenberg.net
  38.  
  39.  
  40. Title: Don Quijote
  41.  
  42. Author: Miguel de Cervantes Saavedra
  43.  
  44. 1531552@lab-4-siee245:~$ less
  45. .android/ .cache/ Documentos/ .local/ .profile
  46. .AndroidStudio3.1/ carpeta1/ Escritorio/ .mozilla/ Público/
  47. .bash_history carpeta2/ .gnupg/ Música/ .sqldeveloper/
  48. .bash_logout .config/ .ICEauthority pg2000.txt typescript
  49. .bashrc Descargas/ Imágenes/ Plantillas/ Vídeos/
  50. 1531552@lab-4-siee245:~$ less
  51. .android/ .cache/ Documentos/ .local/ .profile
  52. .AndroidStudio3.1/ carpeta1/ Escritorio/ .mozilla/ Público/
  53. .bash_history carpeta2/ .gnupg/ Música/ .sqldeveloper/
  54. .bash_logout .config/ .ICEauthority pg2000.txt typescript
  55. .bashrc Descargas/ Imágenes/ Plantillas/ Vídeos/
  56. 1531552@lab-4-siee245:~$ mkdir temporal
  57. 1531552@lab-4-siee245:~$ cp pg2000.txt temporal/
  58. 1531552@lab-4-siee245:~$ # Pregunta 5
  59. 1531552@lab-4-siee245:~$ cd temporal/
  60. 1531552@lab-4-siee245:~/temporal$ ls *.txt
  61. pg2000.txt
  62. 1531552@lab-4-siee245:~/temporal$ # El resultado en este caso son el/los ficheros que acaben en .txt
  63. 1531552@lab-4-siee245:~/temporal$ cat *.txt
  64. The Project Gutenberg EBook of Don Quijote, by Miguel de Cervantes Saavedra
  65.  
  66. This eBook is for the use of anyone anywhere at no cost and with
  67. almost no restrictions whatsoever. You may copy it, give it away or
  68. re-use it under the terms of the Project Gutenberg License included
  69. with this eBook or online at www.gutenberg.net
  70.  
  71.  
  72. Title: Don Quijote
  73.  
  74. Author: Miguel de Cervantes Saavedra
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement