Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. find . -type f -print0 | xargs -0 chmod 644
  2.  
  3. touch "hullo world"
  4. chmod 777 "hullo*"
  5. find . -type f -print0 | xargs -0 chmod 644
  6.  
  7. /bin/chmod: cannot access `./hello': No such file or directory
  8. /bin/chmod: cannot access `world': No such file or directory
  9.  
  10. find . -type f -exec chmod 644 {} ;
  11.  
  12. find . -type f -print0 | xargs -0 -I {} chmod 644 {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement