You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
471 B
Bash
17 lines
471 B
Bash
#!/bin/ash
|
|
|
|
if test -f "/mnt/onboard/tldr/all.txt"; then
|
|
echo "all.txt exists., remove it";
|
|
rm /mnt/onboard/tldr/all.txt
|
|
fi
|
|
|
|
wget -nc "https://hub.xpub.nl/chopchop/tl-dr/log-books/all.txt" -O /mnt/onboard/tldr/all.txt
|
|
|
|
while read line; do
|
|
if test -f "/mnt/onboard/tldr/$line"; then
|
|
echo "$line exists."
|
|
else
|
|
wget "https://hub.xpub.nl/chopchop/tl-dr/log-books/${line}" -O "/mnt/onboard/tldr/${line}"
|
|
fi
|
|
done < /mnt/onboard/tldr/all.txt
|