RSS Subscription
Linux Howtos & Tutorials

Enter your email:

Delivered by


NOTE:New tutorials are from LinuxCareer.com

Poll

Do you own or wish to have iPhone?
 


Linux eBooks FREE Download
A guide to programming Linux kernel modules
Introduction to Linux - A Hands on Guide
A Newbie's Getting Started Guide to Linux

Linux from Scratch - Create Your Own Linux System - Free eBook

Linux: The Hacking Solution (v.3.0)

SQLite 3 with PHP Essential Training – Free Video Training Tutorials

This guide will introduce you to the world of GNU/Linux

The GNU/Linux Advanced Administration

A Complete Beginner's Manual for Ubuntu 10.04 (Lucid Lynx)

Advanced Bash-Scripting Guide

Set up, maintain, and secure a small office email server

Partner Linux Sites:
How-To.LinuxCareer.com
Jobs.LinuxCareer.com
TuxMachines
Monsterb
LinuxBloggers
AdamsInfo
LinuxScrew
All For Linux

Hotfile direct download with wget

If you wish to download files from a hotfile.com ( file hosting ) using wget you need to have three things:

  • hotfile premium account
  • hotfile direct downloads enabled in you hotfile profile
  • OS with a wget command

Once you have all of the above, create a following script and insert your hotfile authentication credentials:

#!/bin/bash

MYUSERNAME=<your hotfile username here>
MYPASS=<your password here>

wget -q --save-cookies .hotfile-cookie --post-data \
"returnto=%2F&user=$MYUSERNAME&pass=$MYPASS&=Login"\
-O - http://www.hotfile.com/login.php
> /dev/null for i in $( cat $1); do wget -c --load-cookies .hotfile-cookie $i done rm .hotfile-cookie

The above script accepts a single argument and that is a file with all URLs you wish to download. One URL per line ! Make the script executable:

$ chmod +x hotfile-direct-download.sh

Execute the script and supply a single argument with all URLs to download:

$ ./hotfile-direct-download.sh URLs.txt

Share this linux post:

Submit Hotfile direct download with wget in Delicious Submit Hotfile direct download with wget in Digg Submit Hotfile direct download with wget in FaceBook Submit Hotfile direct download with wget in Google Bookmarks Submit Hotfile direct download with wget in Stumbleupon Submit Hotfile direct download with wget in Technorati Submit Hotfile direct download with wget in Twitter
 
Comments for this page are closed !!!
Please visit our new Linux Forum for additional help or discussion.


Linux eBooks FREE Download