fdupes: add example to replace duplicate files with hardlinks (#8510)

This commit is contained in:
Joel Tony 2022-09-24 07:18:46 +05:30 committed by GitHub
parent 4066cb9dac
commit e9c9912bf7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,6 +19,10 @@
`fdupes {{directory1}} -R {{directory2}}`
- Search recursively and replace duplicates with hardlinks:
`fdupes -rH {{directory}}`
- Search recursively for duplicates and display interactive prompt to pick which ones to keep, deleting the others:
`fdupes -rd {{directory}}`