Skip to content

Commit 9af12f1

Browse files
committed
update
1 parent 73431ac commit 9af12f1

File tree

5 files changed

+83
-0
lines changed

5 files changed

+83
-0
lines changed

bash-commands/download-all-pdf.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
wget -r -A.pdf https://overapi.com/javascript --wait=2 --level=inf --limit-rate=20K --recursive --page-requisites --user-agent=Mozilla --no-parent --convert-links --adjust-extension --no-clobber -e robots=off
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
```
2+
|02:16:22|bryan@LAPTOP-9LGJ3JGS:[5-download-all-pdf] 5-download-all-pdf_exitstatus:130[╗__________________________________________________________o>
3+
4+
wget -r -A.pdf https://overapi.com/javascript --wait=2 --level=inf --limit-rate=20K --recursive --page-requisites --user-agent=Mozilla --no-parent --convert-links --adjust-extension --no-clobber -e robots=off
5+
Both --no-clobber and --convert-links were specified, only --convert-links will be used.
6+
--2021-06-29 02:16:23-- https://overapi.com/javascript
7+
Resolving overapi.com (overapi.com)... 185.199.111.153, 185.199.109.153, 185.199.108.153, ...
8+
Connecting to overapi.com (overapi.com)|185.199.111.153|:443... connected.
9+
HTTP request sent, awaiting response... 200 OK
10+
Length: 105977 (103K) [text/html]
11+
Saving to: ‘overapi.com/javascript.tmp.html’
12+
13+
overapi.com/javascript.tmp.html 100%[===========================================================================================================================================>] 103.49K 20.9KB/s in 5.0s
14+
15+
2021-06-29 02:16:28 (20.8 KB/s) - ‘overapi.com/javascript.tmp.html’ saved [105977/105977]
16+
17+
Removing overapi.com/javascript.tmp.html since it should be rejected.
18+
19+
--2021-06-29 02:16:30-- https://overapi.com/
20+
Reusing existing connection to overapi.com:443.
21+
HTTP request sent, awaiting response... 200 OK
22+
Length: 40271 (39K) [text/html]
23+
Saving to: ‘overapi.com/index.html.tmp.html’
24+
25+
overapi.com/index.html.tmp.html 100%[===========================================================================================================================================>] 39.33K 20.1KB/s in 2.0s
26+
27+
2021-06-29 02:16:32 (20.1 KB/s) - ‘overapi.com/index.html.tmp.html’ saved [40271/40271]
28+
29+
Removing overapi.com/index.html.tmp.html since it should be rejected.
30+
31+
--2021-06-29 02:16:34-- https://overapi.com/static/cs/javascript_cheat_sheet.pdf
32+
Reusing existing connection to overapi.com:443.
33+
HTTP request sent, awaiting response... 200 OK
34+
Length: 98171 (96K) [application/pdf]
35+
Saving to: ‘overapi.com/static/cs/javascript_cheat_sheet.pdf’
36+
37+
overapi.com/static/cs/javascript_cheat_sheet.pdf 100%[===========================================================================================================================================>] 95.87K 20.4KB/s in 4.7s
38+
39+
2021-06-29 02:16:39 (20.3 KB/s) - ‘overapi.com/static/cs/javascript_cheat_sheet.pdf’ saved [98171/98171]
40+
41+
--2021-06-29 02:16:41-- https://overapi.com/static/cs/jsquick.pdf
42+
Reusing existing connection to overapi.com:443.
43+
HTTP request sent, awaiting response... 200 OK
44+
Length: 125862 (123K) [application/pdf]
45+
Saving to: ‘overapi.com/static/cs/jsquick.pdf’
46+
47+
overapi.com/static/cs/jsquick.pdf 100%[===========================================================================================================================================>] 122.91K 20.5KB/s in 6.0s
48+
49+
2021-06-29 02:16:47 (20.5 KB/s) - ‘overapi.com/static/cs/jsquick.pdf’ saved [125862/125862]
50+
51+
--2021-06-29 02:16:49-- https://overapi.com/static/cs/JSB6RefBooklet.pdf
52+
Reusing existing connection to overapi.com:443.
53+
HTTP request sent, awaiting response... 200 OK
54+
Length: 325346 (318K) [application/pdf]
55+
Saving to: ‘overapi.com/static/cs/JSB6RefBooklet.pdf’
56+
57+
overapi.com/static/cs/JSB6RefBooklet.pdf 100%[===========================================================================================================================================>] 317.72K 20.0KB/s in 16s
58+
59+
2021-06-29 02:17:05 (20.0 KB/s) - ‘overapi.com/static/cs/JSB6RefBooklet.pdf’ saved [325346/325346]
60+
61+
--2021-06-29 02:17:07-- http://overapi.com/
62+
Connecting to overapi.com (overapi.com)|185.199.111.153|:80... connected.
63+
HTTP request sent, awaiting response... 301 Moved Permanently
64+
Location: https://overapi.com/ [following]
65+
--2021-06-29 02:17:09-- https://overapi.com/
66+
Connecting to overapi.com (overapi.com)|185.199.111.153|:443... connected.
67+
HTTP request sent, awaiting response... 200 OK
68+
Length: 40271 (39K) [text/html]
69+
Saving to: ‘overapi.com/index.html.tmp.html’
70+
71+
overapi.com/index.html.tmp.html 100%[===========================================================================================================================================>] 39.33K 21.6KB/s in 1.8s
72+
73+
2021-06-29 02:17:11 (21.6 KB/s) - ‘overapi.com/index.html.tmp.html’ saved [40271/40271]
74+
75+
Removing overapi.com/index.html.tmp.html since it should be rejected.
76+
77+
FINISHED --2021-06-29 02:17:11--
78+
Total wall clock time: 48s
79+
Downloaded: 6 files, 719K in 35s (20.3 KB/s)
80+
Converted links in 0 files in 0 seconds.
81+
|02:17:11|bryan@LAPTOP-9LGJ3JGS:[5-download-all-pdf] 5-download-all-pdf_exitstatus:0[╗__________________________________________________________o>
82+
```

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy