Woof tries a different approach. It assumes that everybody has a web-browser or a command-line web-client installed. Woof is a small simple stupid web-server that can easily be invoked on a single file. Your partner can access the file with tools he trusts (e.g. wget). No need to enter passwords on keyboards where you don't know about keyboard sniffers, no need to start a huge lot of infrastructure, just do a
$ woof filenameand tell the recipient the URL woof spits out. When he got that file, woof will quit and everything is done. And when someone wants to send you a file, woof has a switch to offer itself, so he can get woof and offer a file to you.
Installation:
OpenSuSe user can install Woof using "1-click" installer - here
Usage:
Using Woof is really very simple, provide a valid ip address (your machine ip), port and filename that you wanted to share with other. Once it's up and running, Woof will write out a URL that the recipient can use. Example shown below ..
$ woof -i 192.168.1.2 -p 8888 testfile.txt
Now serving on http://192.168.1.2:8888/As you can see that we have specifyed our IP address and the port with the -i and -p options and followed by the file we need to transfer.
Here you can also specify directory that need to transfer, When a directory is specified, an tar archive gets served. By default it is gzip compressed.
Once the file has been downloaded, Woof quits and prints an entry in the common log format that looks like:
poison.hell.com - - [03/Jan/2010 14:04:25] "GET /testfile.txt HTTP/1.0" 200 -
There is another option -c where you can specify the total number of times a file can be downloaded by any recipient. By default Woof sets this count to 1. In the example below, we set the count to 2 and Woof exits when the file has been downloaded twice, printing two log entries.
$ woof -i 192.168.1.2 -p 8888 -c 2 testfile.txt
Now serving on http://192.168.1.2:8888/poison.hell.com - - [03/Jan/2010 16:09:45] "GET /testfile.txt HTTP/1.0" 200 -
poison.hell.com - - [03/Jan/2010 16:09:49] "GET /testfile.txt HTTP/1.0" 200 -
poison.hell.com - - [03/Jan/2010 16:09:49] "GET /testfile.txt HTTP/1.0" 200 -
Customization
To make thing even more simple create a .woofrc file in your home directory with following content
[main]Now with the help of this file you are not required to pass all those parameter, woof will pick up all the required parameter from this file.
ip = 192.168.1.2
port = 8888
count = 2
compressed = gz
$ woof testfile.txt
Free, facebook, tips, Links, blogging, Downloads, Google, facebookTips, money, news, apps, Social, Media, Website, Tricks, games, Android, software, PIctures, Internet, Security, Web, codes, Review, bloggers, SAMSUNG, Worldwide, Contest, Exitic, Phones, facebookTricks, hacking, London, Olympics, SEO, Youtube, iOS, Adsense, gadgets, iPHONE, widgets, Doodle, twitter, video, Deals, technology, Aircel, Airtel, iPAD, Angry, Birds, BSNL, TechLife, GMAIL, Idea, Microsoft, SmartPhones, Stress, Buster, Windows, Yahoo, Infolinks, Nokia, Scam, Uninor, browsers, Amazon, Euro, CUP, Chat, IDM, JOBS, Modem, Music, Reliance, Results, SSC, Tata, Docomo, bing, freebie, mobile, placements, AIEEE, AlertPay, Chrome, College, Competetive, Exam, Dehradun, Extension, FireFox, GPRS, HTC, IMPACT, Info, MTS, Mark, Zukerberg, Paypal, Promotional, Post, Torrent, UTU, Unlocking, VodaFone, Wall, Paper, apple, books, engineering, iCAR, iTunes, pinterest, rovio, AVG, Admit, Card, Adobe, Affiliate, Marketing, Akhilesh, Amul, Girl, BlackBerry, ChromeBook, Clixsense, Coupon, Digitallife, Discovery, Emoticons, Festival, GATE, GIMP, Income, Tax, International, JSS, JailBreaking, Kindle, Linux, Local, MAX, PAYNE, Mac, Mango, Memory, Speed, Nexus, Online, Shopping, Raakhi, Report, Rising, Stars, Sample, Science, Sony, Syllabus, TabletBooK, Teamviewer, Templates, Dark, Knight, Rises, USA, UPMT, Virgin, Xperia, ZTE, challan, counselling, course, btech, funny, iMOVE, registration
source:http://linuxpoison.blogspot.com/2010/01/135781757113947.html