-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathKindleAdRemover.sh
executable file
·46 lines (39 loc) · 1.26 KB
/
KindleAdRemover.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
#!/bin/bash
echo
echo " ________________________________________________________________ ";
echo " | _ | ";
echo " | |/ • ._ _| | _ /\ _| |_) _ ._ _ _ _ ._ | ";
echo " | |\ | | | (_| | (/_ /--\ (_| | \ (/_ | | | (_) \/ (/_ | | ";
echo " | | ";
echo " ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ ";
echo
echo " Brought to you by scugn1zz0";
echo
echo
echo
echo " This simple script removes Special Offers from your Kindle ";
echo
echo " NOTE: every time you update you need to redo this procedure"
echo
echo
read -p "You want to continue[y/n]? " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
rm -r /Volumes/Kindle/system/.assets
if [ $? -eq 0 ]; then
echo
else
echo "not working..."
echo "your kindle may be not supported, or just it is not recognised"
fi
echo "wait a moment...";
touch /Volumes/Kindle/system/.assets
if [ $? -eq 0 ]; then
echo
echo "done"
else
echo "not..working"
echo "your kindle may be not supported, or just it is not recognised"
fi
fi