Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. sudo chmod -664 my_file
  2.  
  3. chmod 644 my_file
  4.  
  5. $ ls -l my_file
  6. -rwxrwxrwx 1 terdon terdon 0 May 28 13:45 my_file
  7.  
  8. $ chmod -644 my_file; ls -l my_file
  9. ---x-wx-wx 1 terdon terdon 0 May 28 13:45 my_file
  10.  
  11. $ ls -l my_file
  12. -rw-r--r-- 1 terdon terdon 0 May 28 13:45 my_file
  13. $ chmod -644 my_file
  14. $ ls -l my_file
  15. ---------- 1 terdon terdon 0 May 28 13:45 my_file
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement