Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. find . -type f -exec sha256sum {} ; | sort | uniq -w64 --all-repeated=separate | cut -b 67-
  2.  
  3. .
  4. ├── dir1
  5. │   ├── uname1
  6. │   └── uname3
  7. ├── grps
  8. ├── lsbrelease
  9. ├── lsbrelease2
  10. ├── uname1
  11. └── uname2
  12.  
  13. $ find . -type f -exec sha256sum {} ; | sort | uniq -w64 --all-repeated=separate | cut -b 67-
  14. lsbrelease1
  15. lsbrelease2
  16.  
  17. dir1/uname1
  18. dir1/uname3
  19. uname1
  20. uname2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement