[code]فكر كنم راشو پيدا كردم
براي دانلود معمولي با ويجيت
[code]wget http://www.site.com/file.pdf
براي دانلود يك سايت به طور كامل
wget -r http://www.site.com
حال ميخاييم فايلاي خاصي از اين سايتو دانلود كنيم
wget -r -A pdf,jpg
http://www.site.com*
همونطور كه ميبينيم اينا با ويرگول از هم جدا شدن
حالا ميخاييم داخل لينك هاي اون سايت رو هم دانلود كنيم بهش يه اچ بزرگ اضافه ميكنيم
wget -r -H -A pdf,jpg
http://www.site.com/و اين دوتا كه من متوجه نشدم كسي تونست كمك كنه ؟
This is a little bit dangerous as it could end up downloading a lot much files that the ones needed, so we could limit the sites to follow, we will use -D for this
wget -r -H -A pdf,jpg -Dfiles.site.com http://www.site.com
By default wget will follow 5 levels when using -r option, we can change this behaviour with the -l option
wget -r -l 2 http://www.site.com
ممنون
[/code][/code]