Skip to content

Instantly share code, notes, and snippets.

@josuecau
Created February 7, 2026 15:31
Show Gist options
  • Select an option

  • Save josuecau/74fc888159faee393153441fdc5d6404 to your computer and use it in GitHub Desktop.

Select an option

Save josuecau/74fc888159faee393153441fdc5d6404 to your computer and use it in GitHub Desktop.
Find .mkv files with same size (potential duplicates)
#!/usr/bin/env bash
# Find .mkv files with same size (potential duplicates) in nested sub-folders of downloads directory
find ~/downloads -type f -name '*.mkv' -links 1 -printf "%10s\t%p\n" | sort --numeric | uniq -D --check-chars=10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment