Guest User

Untitled

a guest
May 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. find -name "*.conf" | ls -l
  2.  
  3. find -name '*.conf' -ls
  4.  
  5. find -name "*.conf" -printf "%s %pn"
  6.  
  7. find -name '*.conf' | xargs ls -l
  8.  
  9. find -name '*.conf' -print0 | xargs -0 ls -l
Add Comment
Please, Sign In to add comment