Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. $ find .
  2. .
  3. ./b
  4. ./a
  5. ./lib
  6. ./lib/la
  7. ./lib/lb
  8.  
  9. $ find . -not -name 'lib*'
  10. .
  11. ./b
  12. ./a
  13. ./lib/la
  14. ./lib/lb
  15.  
  16. $ find . -not -path './lib*'
  17. .
  18. ./b
  19. ./a
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement