Guest User

Untitled

a guest
Jun 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. joey@veritas:/tmp$ mkdir a
  2. joey@veritas:/tmp$ touch a/b
  3. joey@veritas:/tmp$ chmod 0400 a
  4. joey@veritas:/tmp$ ls -al a
  5. ls: cannot access 'a/.': Permission denied
  6. ls: cannot access 'a/..': Permission denied
  7. ls: cannot access 'a/b': Permission denied
  8. total 0
  9. d????????? ? ? ? ? ? .
  10. d????????? ? ? ? ? ? ..
  11. -????????? ? ? ? ? ? b
  12. joey@veritas:/tmp$ chmod 0500 a
  13. joey@veritas:/tmp$ ls -al a
  14. total 0
  15. dr-x------ 2 joey joey 15 Jun 16 20:47 .
  16. drwxrwxr-x 3 joey joey 15 Jun 16 20:47 ..
  17. -rw-rw-r-- 1 joey joey 0 Jun 16 20:47 b
Add Comment
Please, Sign In to add comment