2023-11-04 18:10:15 +00:00
|
|
|
#!/bin/sh -e
|
2024-05-31 08:57:17 +00:00
|
|
|
rmlint --max-depth=5 --keep-hardlinked --rank-by=HOpdlam -o pretty -o sh:/tmp/dedup.sh "$@"
|
2023-11-04 18:10:15 +00:00
|
|
|
printf "Enter to confirm, any text to skip (answer does not matter if nothing was printed above this line) "
|
|
|
|
read -r answer
|
|
|
|
test -n "$answer" || /tmp/dedup.sh -d
|