-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfixnolinks.sh
88 lines (83 loc) · 2.98 KB
/
fixnolinks.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/bin/bash
rm -f run.sh* results.txt confirmed nolinks dupes dupesdebug rmnolinks.sh
ist=$(find -type f -links 1 | grep -v .sh)
find . -name "*.mkv" -links 1 -print0 | while read -d $'\0' file
do
filename=${file##*/}
find /mnt/user/Media/Movies/ /mnt/user/Media/TV/ -name "$filename" -print0 | while read -d $'\0' found
do
echo "testing: $file -> $found"
if [[ $(stat --printf '%h\n' $found) == '1' ]]
then
pv $file | cmp -s $found && echo "$file" >> confirmed && echo "confirmed: $file -> $found" | tee -a results.txt
&& echo "rm -v \"$found\" && ln \"$file\" \"$found\"" >> run.sh
printf "\n"
elif [[ $(stat --printf '%h\n' $found) == '2' ]]
then
pv $file | cmp -s $found && echo "link already exits: $file -> $found" | tee -a results.txt
printf "\n"
fi
done
echo $file >> nolinks
done
# sanity check duplicates that ( nolink on destination but two in downloads/complete
cat confirmed | while read -r file
do
basename $file >> dupesdebug
done
sort dupesdebug | uniq -d > dupes
if [[ -z $(cat dupes) ]]
then
comm -23 <(sort nolinks) <(sort confirmed) | while read -r file
do
filename="${file}"
echo "notlinked: $filename" >> results.txt
root@Tower:/mnt/user/Media/downloads/complete# cat fixnolinks.sh
#!/bin/bash
rm -f run.sh* results.txt confirmed nolinks dupes dupesdebug rmnolinks.sh
ist=$(find -type f -links 1 | grep -v .sh)
find . -name "*.mkv" -links 1 -print0 | while read -d $'\0' file
do
filename=${file##*/}
find /mnt/user/Media/Movies/ /mnt/user/Media/TV/ -name "$filename" -print0 | while read -d $'\0' found
do
echo "testing: $file -> $found"
if [[ $(stat --printf '%h\n' $found) == '1' ]]
then
pv $file | cmp -s $found && echo "$file" >> confirmed && echo "confirmed: $file -> $found" | tee -a results.txt && echo "rm -v \"$found\" && ln \"$file\" \"$found\"" >> run.sh
printf "\n"
elif [[ $(stat --printf '%h\n' $found) == '2' ]]
then
pv $file | cmp -s $found && echo "link already exits: $file -> $found" | tee -a results.txt
printf "\n"
fi
done
echo $file >> nolinks
done
# sanity check duplicates that ( nolink on destination but two in downloads/complete
cat confirmed | while read -r file
do
basename $file >> dupesdebug
done
sort dupesdebug | uniq -d > dupes
if [[ -z $(cat dupes) ]]
then
comm -23 <(sort nolinks) <(sort confirmed) | while read -r file
do
filename="${file}"
echo "notlinked: $filename" >> results.txt
echo "rm -v \"$filename\"" >> rmnolinks.sh
done
chmod +x run.sh
chmod +x rmnolinks.sh
printf "\n\n\n\n"
echo "----"
echo done
echo "----"
echo "see debug to confirmed and nolinks"
echo 'see ouput to results.txt'
echo "see script to run to fixlinks run.sh"
echo "see script to remove nolinks rmnolinks.sh"
else
echo "you have dupes see dupes and dupesdebug file"
fi