mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-16 11:21:18 +03:00
Added a really hacky script to grab the documentation from the website.
This commit is contained in:
6
build/fetch.sh
Executable file
6
build/fetch.sh
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
curl http://arduino.berlios.de/index.php/Reference/HomePage -o index.html
|
||||||
|
curl http://arduino.berlios.de/pub/skins/arduino/arduino.css -o arduino.css
|
||||||
|
for i in `grep -o "http://arduino.berlios.de/index.php/Reference/[^']*" index.html | sort -u | grep -v '?' | cut -d '/' -f 6`; do curl http://arduino.berlios.de/index.php/Reference/$i -o $i.html; done
|
||||||
|
perl -i -pe "s|http://arduino.berlios.de/index.php/Reference/[^?\"']*\?[^'\"]*|#|g" *.html
|
||||||
|
perl -i -pe "s|http://arduino.berlios.de/index.php/Reference/([^']*)|\1.html|g" *.html
|
||||||
|
perl -i -pe "s|http://arduino.berlios.de/pub/skins/arduino/arduino.css|arduino.css|g" *.html
|
Reference in New Issue
Block a user