dotfiles/.local/bin/scripts/downloads

23 lines
834 B
Text
Raw Normal View History

#!/bin/sh
2023-09-12 01:16:35 +02:00
# Move common files into their place from the downloads folder.
d5=$DATA/5-*
dow=$d5/download
# Internal Duplicates
2025-02-04 11:52:56 +01:00
script1=/tmp/dedup-download_$(date +%s)_internal.sh
rmlint --rank-by=Olam -o pretty -o sh:$script1 $dow/*.*
printf "Enter to confirm, any text to skip (answer does not matter if nothing is printed above this). "
2023-09-12 01:16:35 +02:00
read -r answer
2025-02-04 11:52:56 +01:00
test -n "$answer" || $script1 -d
# Songs
2023-09-12 01:16:35 +02:00
mv -v -- $dow/*.mp3 $dow/*.flac $dow/*.wav $MUSIC/
mv -v -- $dow/*.iso $DATA/4-*/flash/
# Data-dir duplicates
2025-02-04 11:52:56 +01:00
script2=/tmp/dedup-download_$(date +%s)_data.sh
rmlint --keep-all-tagged --max-depth=5 --rank-by=Odlam -o pretty -o sh:$script2 $d5 // $DATA/1-* $DATA/2-* $DATA/3-* $DATA/4-*
printf "Enter to confirm, any text to skip (answer does not matter if nothing is printed above this). "
read -r answer
2025-02-04 11:52:56 +01:00
test -n "$answer" || $script2 -d