We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to remove all duplicate files by file type?
for example: fdupes -rdN -type=JPG /mnt or fdupes -rdN -name=*.jpg
The text was updated successfully, but these errors were encountered:
....or negative of that function! For example, choose for deletion all files, exclude specific extension: fdupes -rdN -noext=xmp;xml;crc
Sorry, something went wrong.
Also came looking for this, would love to run this against image only.
This was my main reason to switch to the jdupes fork
`exts="avi,divx,f4v,flv,m4v,mkv,mov,mp4,mpe,mpeg,mpg,rm,rmvb,ts,vob,webm,wmv,iso"
jdupes --recurse --ext-filter="onlyext:$exts" --ext-filter="nostr:${transmission_folder}/incomplete/" --print-summarize --size $folder`
Duplicate of #6
I wrote undupes that supports this: https://github.com/m-chaturvedi/undupes
No branches or pull requests
Is there a way to remove all duplicate files by file type?
for example:
fdupes -rdN -type=JPG /mnt
or
fdupes -rdN -name=*.jpg
The text was updated successfully, but these errors were encountered: