2023-11-04 19:10:15 +01:00
|
|
|
#!/bin/sh -e
|
2024-05-31 11:57:17 +03:00
|
|
|
rmlint --max-depth=5 --keep-hardlinked --rank-by=HOpdlam -o pretty -o sh:/tmp/dedup.sh "$@"
|
2023-11-04 19:10:15 +01: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
|