| website = http://www.gnu.org/software/wget/
}}
'''GNU Wget''', seringkali 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===
*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.
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 merubah 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>
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. SignificantKontributor contributionsutama aretercatat crediteddi 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]].
|