6 lines
169 B
Bash
Executable file
6 lines
169 B
Bash
Executable file
#!/bin/zsh
|
|
# Deduplicate Documents
|
|
dox=$(realpath $DATA/3-*)
|
|
echo "Hardlinking:"
|
|
dedup --max-depth=9 -c sh:handler=hardlink "$dox" "$@"
|
|
dedup --max-depth=9 "$dox" "$@"
|