-
Notifications
You must be signed in to change notification settings - Fork 23
/
update_tutorials.sh
executable file
·36 lines (31 loc) · 1.1 KB
/
update_tutorials.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
set -e
cd ~/apps
rm -rf tutorial.djangogirls.org docs.python.org.ar djangotutorial.readthedocs.org
# Tutorial Django Girls (Ingles)
wget --continue --timestamping --recursive \
--no-clobber --page-requisites \
--html-extension --convert-links \
--restrict-file-names=windows \
--no-parent \
http://tutorial.djangogirls.org/en/index.html
# Tutorial Django Girls (Español)
wget --continue --timestamping --recursive \
--no-clobber --page-requisites \
--html-extension --convert-links \
--restrict-file-names=windows \
--no-parent \
http://tutorial.djangogirls.org/es/index.html
# Tutorial Python
wget --continue --timestamping --recursive \
--no-clobber --page-requisites \
--html-extension --convert-links \
--restrict-file-names=windows \
--no-parent \
http://docs.python.org.ar/tutorial/3/index.html
# Tutorial Django
wget --continue --timestamping --recursive \
--no-clobber --page-requisites \
--html-extension --convert-links \
--restrict-file-names=windows \
--no-parent \
http://djangotutorial.readthedocs.org/es/1.8/