1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 08:42:08 +02:00

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}}`