Skip to content

Latest commit

 

History

History
executable file
·
71 lines (46 loc) · 1.04 KB

Wget Cheat Sheet.md

File metadata and controls

executable file
·
71 lines (46 loc) · 1.04 KB

Markdown Cheat Sheet

Bölümler

⚠️ Basit Operasyonlar

URL'den dosyayı indir

wget URL-bağlantısı

URL'den dosyayı belirlediğiniz isim ile indirir

wget -o isim.zip URL-bağlantısı

Birden fazla dosya indir

wget URL-bağlantısı-1 URL-bağlantısı-2

Dosyada bulunan linklerdeki dosyaları indir

wget -i indirilecek/linkler.txt

Durdurulan indirmeyi devam et

wget -c URL-durduruldu

URL'deki dosyayı arka planda indir

wget -b URL-bağlantısı

URL'deki dosyayı arka planda indir ve logları dosyaya yaz

wget -b /wget/logs.txt URL-bağlantısı

Dosya indirme hızını sınırla

wget --limit-rate=250k URL-bağlantısı

URL'deki dosyayı belirtilen defa deneme

wget --tries=75 URL-bağlantısı

URL'deki bağlantı belirtilen boyutu geçerse durdur

wget -Q10m -i download-list.txt

🔖 Tüm Operasyonlar

will be here