Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.79 KB | None | 0 0
  1. #CRIA ARQUIVO
  2. $ touch 1057.txt
  3. $ ls -l
  4. total 500656
  5. -rw-rw-r--   1 tiago.brandao tiago.brandao         0 Oct 18 10:57 1057.txt
  6. $ stat 1057.txt
  7.   File: 1057.txt
  8.   Size: 0           Blocks: 0          IO Block: 4096   regular empty file
  9. Device: 801h/2049d  Inode: 11129617    Links: 1
  10. Access: (0664/-rw-rw-r--)  Uid: ( 1001/tiago.brandao)   Gid: ( 1001/tiago.brandao)
  11. Access: 2019-10-18 10:57:43.704900899 -0300
  12. Modify: 2019-10-18 10:57:43.704900899 -0300
  13. Change: 2019-10-18 10:57:43.704900899 -0300
  14.  Birth: -
  15.  
  16. #ACESSA ARQUIVO MAS NÃO MODIFICA
  17. $ nano 1057.txt
  18. $ stat 1057.txt
  19.   File: 1057.txt
  20.   Size: 0           Blocks: 0          IO Block: 4096   regular empty file
  21. Device: 801h/2049d  Inode: 11129617    Links: 1
  22. Access: (0664/-rw-rw-r--)  Uid: ( 1001/tiago.brandao)   Gid: ( 1001/tiago.brandao)
  23. Access: 2019-10-18 10:58:12.253522678 -0300
  24. Modify: 2019-10-18 10:57:43.704900899 -0300
  25. Change: 2019-10-18 10:57:43.704900899 -0300
  26.  Birth: -
  27.  
  28. #MODIFICA CONTEÚDO DO ARQUIVO
  29. $ nano 1057.txt
  30. $ stat 1057.txt
  31.   File: 1057.txt
  32.   Size: 2           Blocks: 8          IO Block: 4096   regular file
  33. Device: 801h/2049d  Inode: 11129617    Links: 1
  34. Access: (0664/-rw-rw-r--)  Uid: ( 1001/tiago.brandao)   Gid: ( 1001/tiago.brandao)
  35. Access: 2019-10-18 10:58:12.253522678 -0300
  36. Modify: 2019-10-18 10:58:22.149738222 -0300
  37. Change: 2019-10-18 10:58:22.149738222 -0300
  38.  Birth: -
  39.  
  40. #MOVE ARQUIVO PARA PASTA
  41. $ cd bucha/
  42. /bucha$ stat 1057.txt
  43.   File: 1057.txt
  44.   Size: 2           Blocks: 8          IO Block: 4096   regular file
  45. Device: 801h/2049d  Inode: 11129617    Links: 1
  46. Access: (0664/-rw-rw-r--)  Uid: ( 1001/tiago.brandao)   Gid: ( 1001/tiago.brandao)
  47. Access: 2019-10-18 10:58:12.253522678 -0300
  48. Modify: 2019-10-18 10:58:22.149738222 -0300
  49. Change: 2019-10-18 10:59:19.054977720 -0300
  50.  Birth: -
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement