21 lines
746 B
Bash
Executable File
21 lines
746 B
Bash
Executable File
#!/bin/sh
|
|
# Move common files into their place from the downloads folder.
|
|
d5=$DATA/5-*
|
|
dow=$d5/download
|
|
|
|
# Internal Duplicates
|
|
rmlint --rank-by=Olam -o pretty -o sh:/tmp/dow.sh $dow/*.*
|
|
printf "Enter to confirm, any text to skip (answer does not matter if nothing is printed above this). "
|
|
read -r answer
|
|
test -n "$answer" || /tmp/dow.sh -d
|
|
|
|
# Songs
|
|
mv -v -- $dow/*.mp3 $dow/*.flac $dow/*.wav $MUSIC/
|
|
mv -v -- $dow/*.iso $DATA/4-*/flash/
|
|
|
|
# Data-dir duplicates
|
|
rmlint --keep-all-tagged --max-depth=5 --rank-by=Odlam -o pretty -o sh:/tmp/dow.sh $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
|
|
test -n "$answer" || /tmp/dow.sh -d
|