8 fdupes-hardlink - Make hardlinks from identical files as reported by fdupes(1)
22 while read file1 fileN
; do
23 if [ -e "$file1" ]; then
24 for file in $fileN; do
25 ln -f -v "$file1" "$file"
32 "Makes hardlinks from identical files as reported by fdupes(1).
35 Create duplication report: $0 --scan [directories] > [report-file]
36 Make hardlinks according to duplication report: $0 --from-file [report-file]
39 Does not work with files have IFS in their name." >&2