This shows you the differences between two versions of the page.
| — |
soft:shell-tips-and-tricks [2026/06/30 12:55] (current) phil created |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Shell tips & tricks & oneliners ====== | ||
| + | ===== Find files having same content in a directory ===== | ||
| + | |||
| + | |||
| + | <code bash> | ||
| + | find . -type f -exec md5sum {} + | sort | uniq -w32 -dD | ||
| + | </ | ||