snippets · bash
Find duplicate filenames in different directories
Findet gleiche Dateinamen an unterschiedlichen Stellen.
find {PATH} -type f -printf '%f\n' | sort | uniq -dsnippets · bash
Findet gleiche Dateinamen an unterschiedlichen Stellen.
find {PATH} -type f -printf '%f\n' | sort | uniq -d