Advertisement
Guest User

Untitled

a guest
Mar 30th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. [testuser@testhost] /tmp$ mkdir ff
  2.  
  3. [testuser@testhost] /tmp$ cd ff
  4.  
  5. [testuser@testhost] /tmp/ff$ touch a b c
  6.  
  7. [testuser@testhost] /tmp/ff$ rm -rf ./
  8. rm: cannot remove directory: ‘./’
  9.  
  10. [testuser@testhost] /tmp/ff$ ls
  11. a b c
  12.  
  13. [testuser@testhost] /tmp/ff$ rm -rf /tmp/ff
  14.  
  15. [testuser@testhost] /tmp/ff$ ls
  16.  
  17. [testuser@testhost] /tmp/ff$ ls ../ff
  18. ls: cannot access ../ff: No such file or directory
  19.  
  20. [testuser@testhost] /tmp/ff$ cd ..
  21.  
  22. [testuser@testhost] /tmp$ ls ff
  23. ls: cannot access ff: No such file or directory
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement