Wget: Perbedaan antara revisi

Konten dihapus Konten ditambahkan
Reindra (bicara | kontrib)
rintisan terjemahan, kalimat pembuka
 
k ~cite
 
(27 revisi perantara oleh 19 pengguna tidak ditampilkan)
Baris 1:
{{terjemah|Inggris}}
 
{{infobox software
| name = GNU Wget
| screenshot = [[Berkas:Wget-screenshot.png|250px]]
| caption = [[Cuplikan layar]] Wget di [[Linux]]
| collapsible = ya
| developer = Micah Cowan
| latest_release_versionlatest release version = 1.1121.41
| latest release date = {{Start date and age|2021|01|09|df=yes}}<ref>{{cite web
| latest_release_date = {{release_date|2008|06|29}}
| url = https://lists.gnu.org/archive/html/info-gnu/2021-01/msg00007.html
| operating_system = [[Antar-platform]]
| title = wget-1.21.1 released [stable]
| programming_language = [[C_(bahasa pemrograman)|C]]
| first = Darshit
| genre = [[FTP client]] / [[HTTP client]]
| last = Shah
| publisher = The Free Software Foundation
| date = 2021-01-09
| access-date = 2021-01-15}}</ref>
| operating_system = [[Antar-platform]] ([[Linux]] dengan paket wget atau [[busybox]], sedangkan untuk [[Microsoft Windows|Windows]] dapat didownload langsung di website Wget)
| programming_language = [[C_C (bahasa pemrograman)|C]]
| genre = [[FTPFile clientTransfer Protocol|klien FTP]] / [[HTTPPenjelajah clientweb|klien HTTP]]
| license = [[Lisensi Publik Umum GNU]]
| website = http://www.gnu.org/software/wget/
}}
'''GNU Wget''', seringkalisering kali hanya disebut wget, adalah sebuah [[program komputer]] sederhana yang menerimamengambil muatanmateri dari [[web server]], dan adalahmerupakan bagian dari [[Proyek GNU]]. Namanya diturunkan dari ''[[World Wide Web]]'' dan ''[[get]]'', konotatif dari fungsi primernya. Program ini menyokongmendukung pengunduhan melalui protokol [[HTTP]], [[HTTPS]], dan [[FTP]], protokol berbasis [[Transmission Control Protocol|TCP/IP]] yang paling luas digunakan untuk penjelajahan web.
 
Fitur-fiturnya meliputi pengunduhan rekursif, konversi pranala untuk peninjauan offline dari HTML lokal, menyokongmendukung proksiproxy, dan lebih banyak lagi. Pertama kali muncul pada tahun 1996, dilatarbelakangi oleh ledakan penggunaan Web, menyebabkan penggunaan yang luas di antara para pengguna [[Unix]] dan distribusi [[Linux]] terkemuka. Ditulis menggunakan bahasa [[C (bahasa pemrograman)|C]] [[porting|portabel]], Wget dapat diinstal secara mudah pada sistem mirip- Unix apa saja dan telah diportasi ke beberapa lingkungan, termasuk [[Mac OS X]], [[Microsoft Windows]], [[OpenVMS]] dan [[AmigaOS]].
 
Wget digunakan sebagai basis program-program GUI semisal [[Gwget]] untuk desktop [[GNOME]]. Dirilis di bawah [[Lisensi Publik Umum GNU]] v3, Wget adalah [[perangkat lunak bebas]].
 
<!--
==Fitur==
===RobustnessKehandalan===
Wget hasdidesain beendengan designedkehandalan fordalam robustnessbekerja overuntuk slowjaringan oryang unstablelambat networkatau connectionstidak stabil. If aJika [[download]] doestidak notselesai completedisebabkan due to amasalah [[computer network|network]] problem, Wget willakan automaticallymencoba trymelanjutkan todownload continuesecara theotomatis downloaddari frombagian whereyang it left off,terputus and repeatmengulangi thisini untilhingga theseluruh wholebagian file hasdiunduh been retrievedlengkap. ItWget wasadalah onesalah ofsatu theklien firstpertama clients to make use ofyang thememanfaatkan then-new <code>Range</code> [[List of HTTP headers|HTTP header]] toyang supportmendukung thisfitur featureini.
 
===Pengunduhan rekursif===
Baris 43 ⟶ 52:
*Files larger than 2 [[gibibyte|GB]] are [[Large File Support|supported]] on 32-bit systems that include the appropriate interfaces.
*Download speed may be [[Bandwidth Throttling|throttled]] to avoid using up all of the available [[Bandwidth (computing)|bandwidth]].
-->
 
== Penggunaan Wget ==
=== Penggunaan dasar ===
Penggunaan dasar GNU wget adalah dengan menjalankannya melalui terminal baris perintah dan menyertakan satu atau lebih URL sebagai argumen.
 
===Penggunaan dasar===
Typical usage of GNU Wget consists of invoking it from the command line, providing one or more URLs as arguments.
<pre>
# DownloadMengunduh thehalaman titleawal page ofwebsite example.com toke asebuah file
# nameddengan nama "index.html".
wget http://www.example.com/
</pre>
 
<pre>
# DownloadMengunduh Wget'skode sourcesumber codewget fromdari the GNUsitus ftp site.GNU
wget ftp://ftp.gnu.org/pub/gnu/wget/wget-latest.tar.gz
</pre>
 
Penggunaan yang lebih kompleks termasuk mengunduh otomatis beberapa URL dan menyimpannya sesuai susunan direktori.
More complex usage includes automatic download of multiple URLs into a directory hierarchy.
<pre>
# Downloadmengunduh *.gif from(semua afile dengan akhiran gif) dari sebuah website
# (noticeingatlah thatbahwa globbingpenggunaan wildcard, likeseperti pada "wget http://www.server.com/dir/*.gif", onlyhanya worksbekerja forpada ftpsitus sitesftp)
wget -erobots=off -r -l1 --no-parent -A.gif http://www.server.com/dir/
</pre>
 
<pre>
# Downloadmengunduh thehalaman titleawal page ofsitus example.com, alongtermasuk gambar-gambar dan file withstylesheet
# kemudian mengubah URL di dalamnya untuk mengacu pada isi lokal yang telah diunduh.
# the images and style sheets needed to display the page, and convert the
# URLs inside it to refer to locally available content.
wget -p -k http://www.example.com/
</pre>
 
<pre>
# Downloadmengunduh theseluruh entireisi contentshalaman ofawal website example.com
wget -r -l 0 http://www.example.com/
</pre>
 
<!--
===Penggunaan tingkat lanjut===
<pre>
Baris 113 ⟶ 126:
#Mirror website to a static copy for local browsing.
#This means all links will be changed to point to the local files.
#Note --html-extension will convert any CGI, ASP or PHP generated files to HTML (or anything else not .html).
wget --mirror -w 2 -p --html-extension --convert-links -P <dir> http://www.yourdomain.com
</pre>
-->
 
== Penulis dan hak cipta ==
GNU Wget wasditulis written byoleh Hrvoje Nikšić with contributionsdengan bykontribusi manybanyak otherorang peoplelainnya, includingtermasuk Dan Harkless, Ian Abbott, anddan Mauro Tortonesi. Kontributor Significantutama contributionstercatat aredi credited in thefile ''AUTHORS'' fileyang includeddisertakan indalam thedistribusi distributionprogram, andkontributor alllainnya remainingtercatat onesdi are documented in thefile-file [[changelog]]s, alsoyang includedjuga withdisertakan thedengan program. WgetSaat isini nowWget maintaineddikelola byoleh Micah Cowan.
 
<!--
TheHak copyrightcipta towget Wgetdimiliki belongs to theoleh [[Free Software Foundation]], whose policy is to require copyright assignments for all non-trivial contributions to GNU software. [http://www.gnu.org/licenses/why-assign.html]
 
==Sejarah==
===Sejarah diniawal===
Wget is the descendant of an earlier program named '''Geturl''' by the same author, the development of which commenced in late 1995. The name was changed to ''Wget'' after the author became aware of an earlier [[Amiga]] program named '''GetURL''', written by James Burton in [[AREXX]].
 
Baris 178 ⟶ 193:
 
Wget's [[documentation]], in the form of a [[Texinfo]] reference manual, is distributed under the terms of the [[GNU Free Documentation License]], version 1.2 or later. The [[man page]] usually distributed on Unix-like systems is automatically generated from a subset of the Texinfo manual and falls under the terms of the same license.
-->
 
== Lihat jugapula ==
{{portal|Free software|Free Software Portal Logo.svg}}
 
* [[GNU|The GNU Project]]
* [[cURL]]
* [[NcFTP]]
* [[Web crawler]]
* [[HTTrack]]
* [[lftp]]
 
== Pranala luar ==
* [http://www.gnu.org/software/wget/ Halaman resmi Wget]
* [ftp://ftp.gnu.org/pub/gnu/wget/ Direktori Wget di ftp.gnu.org]
* [ftp://gnjilux.srk.fer.hr/pub/unix/util/wget/ Situs wget FTP kuno] {{Webarchive|url=https://web.archive.org/web/20140813040637/http://gnjilux.srk.fer.hr/pub/unix/util/wget/ |date=2014-08-13 }} yang berisi rilis riwayatis, termasuk rilis ''Geturl'' sejak 1.0 ke muka.
* [http://hg.addictivecode.org/ Situs penyimpanan Mercurial Wget]
* [http://gnuwin32.sourceforge.net/packages/wget.htm WGET untuk Windows] sebagai bagian dari [[GNUWin32]]
* [http://users.ugent.be/~bpuype/wget/ Wget yang dikompilasi untuk Windows] {{Webarchive|url=https://web.archive.org/web/20090516094048/http://users.ugent.be/~bpuype/wget/ |date=2009-05-16 }}
* [http://khomsanph.net/visualwget/ VisualWget untuk windows]
* [http://wget.addictivecode.org/FrequentlyAskedQuestions?action=show&redirect=Faq Pertanyaan yang sering diajukan tentang Wget]
* [http://www.devarticles.com/c/a/Web-Services/Website-Mirroring-With-wget/ Panduan mungil Wget] {{Webarchive|url=https://web.archive.org/web/20090521235529/http://www.devarticles.com/c/a/Web-Services/Website-Mirroring-With-wget/ |date=2009-05-21 }}
* [http://www.akadia.com/services/wget.html Panduan Wget]
* [http://www.christopherlewis.com/WGet/default.htm Pemaketan Win32 oleh Christopher Lewis (beserta rilis pengembangan)] {{Webarchive|url=https://web.archive.org/web/20090322000607/http://www.christopherlewis.com/WGet/default.htm |date=2009-03-22 }}
* [http://www.martin-achern.de/wgetgui/ Wget::gui - GUI untuk wget, ditulis dengan bahasa pemrograman Perl, untuk Linux dan Windows]
* [http://en.cocoawget.nobody.jp/ CocoaWget - GUI untuk wget, untuk Mac OS X] {{Webarchive|url=https://web.archive.org/web/20090316070146/http://en.cocoawget.nobody.jp/ |date=2009-03-16 }}
* [http://www.cybershade.us/winwget/ WinWGet - GUI untuk wget, untuk Windows] {{Webarchive|url=https://web.archive.org/web/20060616030358/http://www.cybershade.us/winwget/ |date=2006-06-16 }}
* [http://wput.sourceforge.net/ Wput - balikan fungsional Wget]
 
{{Manajer unduhan}}
{{GNU}}
 
[[Kategori:Perangkat lunak proyek GNU]]
[[Kategori:FTP clients]]
[[Kategori:HTTP clients]]
[[Kategori:Perangkat lunak transfer berkas bebas]]
[[Kategori:Free web crawlers]]
[[Kategori:Manajer pengunduhan]]
[[Kategori:Perangkat lunak portabel]]
[[Kategori:Modus teks]]
[[Kategori:Perangkat lunak antar-platform bebas]]
 
[[ar:وغت]]
[[cs:Wget]]
[[de:Wget]]
[[en:Wget]]
[[es:GNU Wget]]
[[fr:Wget]]
[[it:Wget]]
[[ja:GNU Wget]]
[[pl:Wget]]
[[pt:Wget]]
[[ru:Wget]]
[[uk:Wget]]
[[wuu:Wget]]
[[zh:Wget]]