summaryrefslogtreecommitdiff
path: root/src/content/en/pastebins/2021/06/22
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2025-04-18 02:17:12 -0300
committerEuAndreh <eu@euandre.org>2025-04-18 02:48:42 -0300
commit020c1e77489b772f854bb3288b9c8d2818a6bf9d (patch)
tree142aec725a52162a446ea7d947cb4347c9d573c9 /src/content/en/pastebins/2021/06/22
parentMakefile: Remove security.txt.gz (diff)
downloadeuandre.org-020c1e77489b772f854bb3288b9c8d2818a6bf9d.tar.gz
euandre.org-020c1e77489b772f854bb3288b9c8d2818a6bf9d.tar.xz
git mv src/content/* src/content/en/
Diffstat (limited to 'src/content/en/pastebins/2021/06/22')
-rw-r--r--src/content/en/pastebins/2021/06/22/curl-wget.adoc92
1 files changed, 92 insertions, 0 deletions
diff --git a/src/content/en/pastebins/2021/06/22/curl-wget.adoc b/src/content/en/pastebins/2021/06/22/curl-wget.adoc
new file mode 100644
index 0000000..97f55c7
--- /dev/null
+++ b/src/content/en/pastebins/2021/06/22/curl-wget.adoc
@@ -0,0 +1,92 @@
+= "cloc: curl and wget"
+
+`curl`:
+
+[source,sh]
+----
+$ pushd `mktemp -d`
+/tmp/tmp.AZkwvk7azD ~/
+$ git clone git://github.com/curl/curl .
+Clonage dans '.'...
+remote: Enumerating objects: 167029, done.
+remote: Counting objects: 100% (925/925), done.
+remote: Compressing objects: 100% (372/372), done.
+remote: Total 167029 (delta 590), reused 818 (delta 548), pack-reused 166104
+Réception d'objets: 100% (167029/167029), 75.63 Mio | 9.33 Mio/s, fait.
+Résolution des deltas: 100% (131415/131415), fait.
+$ cloc .
+ 3386 text files.
+ 3342 unique files.
+ 2084 files ignored.
+
+github.com/AlDanial/cloc v 1.90 T=1.34 s (973.7 files/s, 260104.4 lines/s)
+------------------------------------------------------------------------------------
+Language files blank comment code
+------------------------------------------------------------------------------------
+C 535 25645 36361 135318
+XML 23 21 20 45997
+m4 29 1526 1976 16972
+Perl 56 2611 4010 15411
+C/C++ Header 223 4178 10109 13794
+Markdown 53 2784 0 7038
+Visual Studio Solution 27 0 21 5049
+D 242 398 0 3549
+CMake 34 754 1288 3056
+DOS Batch 7 293 370 1554
+YAML 18 115 171 1493
+make 21 296 660 1440
+Bourne Shell 22 326 633 1136
+Pascal 2 228 0 634
+Python 4 196 221 628
+Visual Basic Script 1 30 60 341
+C++ 3 58 69 169
+Gencat NLS 1 2 0 130
+TNSDL 1 3 0 113
+Windows Resource File 2 17 47 110
+Bourne Again Shell 1 17 44 97
+Protocol Buffers 1 2 0 28
+diff 1 0 0 11
+Lisp 1 1 23 7
+TOML 1 0 0 3
+------------------------------------------------------------------------------------
+SUM: 1309 39501 56083 254078
+------------------------------------------------------------------------------------
+----
+
+`wget`:
+
+[source,sh]
+----
+$ pushd `mktemp -d`
+/tmp/tmp.NX0udlJMiz ~/
+$ git clone git://git.savannah.gnu.org/wget.git .
+Clonage dans '.'...
+remote: Counting objects: 52248, done.
+remote: Compressing objects: 100% (18430/18430), done.
+remote: Total 52248 (delta 23879), reused 52248 (delta 23879)
+Réception d'objets: 100% (52248/52248), 13.11 Mio | 6.18 Mio/s, fait.
+Résolution des deltas: 100% (23879/23879), fait.
+$ cloc .
+ 12210 text files.
+ 11629 unique files.
+ 11876 files ignored.
+
+github.com/AlDanial/cloc v 1.90 T=1.26 s (270.4 files/s, 61357.4 lines/s)
+--------------------------------------------------------------------------------
+Language files blank comment code
+--------------------------------------------------------------------------------
+C 53 6596 8955 34084
+Perl 106 1832 870 7415
+Python 105 1481 2374 5318
+C/C++ Header 43 704 1153 1486
+Bourne Shell 11 308 311 1278
+m4 3 172 183 940
+make 9 136 172 522
+YAML 3 27 13 515
+Bourne Again Shell 6 78 89 274
+Markdown 2 37 0 113
+lex 1 29 65 73
+--------------------------------------------------------------------------------
+SUM: 342 11400 14185 52018
+--------------------------------------------------------------------------------
+----