the opposite of wget
wsend is a Command Line Tool (CLI) for sending files. It's open-source and easy to use. We've designed wsend
to be suitable for command line beginners and well seasoned users alike.
wsend
requires bash
and curl
. And if you've ever run into this problem: http://xkcd.com/949/
wsend
uses wsend.net for backend file handling.
wget https://raw.githubusercontent.com/abemassry/wsend/master/install.sh -O - | bash
alias wsend="~/.wsend/wsend"
Note: This install command appends the alias to your .bashrc or equivalent
mkdir -p ~/bin # just in case
wget https://wsend.net/wsend | ~/bin/wsend
chmod +x ~/bin/wsend
export PATH=$PATH:~/bin # also put that in your .zshenv or whatever
wsend file.txt
wget https://wsend.net/wsend
chmod +x wsend
./wsend file.txt
Your first file is sent and wsend has been installed.
- Sending files right from the command line without having to specify a directory
- Gives you a url
- Integrates well with unix pipes
- Send a file without registering
- User accounts available with large amounts of storage space
Usage:
wsend <file>
Common Commands:
Send a file
wsend file.txt
Send a file in an email to your friend (if you have the mail command set up)
wsend logfile.log | mail -s "Here was that log file you wanted" [email protected]
Register
wsend --register
Login
wsend --login
Refer a friend (receive 1GB for you and friend)
wsend --refer [email protected]
Get a referral link to send to people
wsend --refer-link
List Local Files (files that have been uploaded from this machine)
wsend --list-local
List Server Files (files stored on wsend.net)
wsend --list-server
Delete Files
wsend --rm https://wsend.net/dd976079cb4980a44c5dcd2ee07b817b/file.txt
Update Files
wsend --update https://wsend.net/dd976079cb4980a44c5dcd2ee07b817b/file.txt file.txt
Account | Space | Price |
---|---|---|
Unregistered (Anonymous) Account | 200MB | Free |
Free Account | 2GB | Free |
Supporter Paid Account | 10GB | $10/year or $1/month |
Enthusiast Paid Account | 75GB | $30/year or $3/month |
Hero Paid Account | 100GB | $50/year or $5/month |
The API is REST like in the sense that there is a representational transfer of state. It isn't REST like in the sense that the only transport method that is used is HTTP POST.
To get a user id:
curl -F "start=1" https://wsend.net/createunreg
This should be saved to a file or a database
To send a file:
curl -F "uid=$id" -F "filehandle=@$fileToSend" https://wsend.net/upload_cli
Where $id
is the id from the previous request and $fileToSend
is the file you would like to send.
To see if the user has storage space available to send this file:
curl -F "uid=$id" -F "size=$fileToSendSize" https://wsend.net/userspaceavailable
Where $fileToSendSize
is the filesize in bytes.
To register a user:
curl -F "uid=$id" -F "email=$email" -F "password=$password" https://wsend.net/register_cli
You want to protect the password from showing up anywhere as security measure. For the wsend command line script the password is not echoed and passed directly as a variable.
To log in a user:
curl -F "email=$email" -F "password=$password" https://wsend.net/login_cli
To list files (returns a list in JSON):
curl -F "uid=$id" https://wsend.net/list_cli
To delete a file:
curl -F "link=$link" -F "uid=$id" $host/delete_cli
Where $link is a wsend.net url pointing to the file
-
Q: Why did you program this in Bash wasn't that painful? Bash isn't meant to do these things, you could have used python with pip, nodejs with npm, or ruby with rubygems.
A: While it was painful we wanted this script to be ubiquitous as possible and bash was installed on all of our *nix machines. We do have plans to write this in the languages you mention and will work towards this in the future. If you would like to write a client in one of these languages it would be something we would both appreciate and support. UPDATE: node-wsend available on npm
-
Q: What about wput? Isn't that the opposite of wget?
A: wput is an ftp client and its aim is a little different than that of wsend. wsend uploads files through https which works on port 443 which in some restricted firewall situations may work (if you can access https pages). They serve different purposes and if you like wput as well as wsend we hope you can use them both, in different ways.
-
Q: When are the Enthusiast and Hero accounts going to become available?
A: As soon as we generate enough income with the Supporter accounts we can purchase more servers and more space. We do not want to degrade the quality of paid accounts because paying customers deserve the best treatment. We do not want to offer services that we can't fully 100% support until we are ready to.
-
Q: What is the max filesize?
A: For the Unregistered Account it is 200MB, for the Free account it is 2GB, for the Paid accounts it is 10GB.
-
Q: I had an unregistered 200MB account. Can I get a listing of my files?
A: If you register through the command line and then log into https://wsend.net you sould be able to get a listing of all of the files you have uploaded.
-
Q: But I don't want to register, can't you list my files on the command line with a wsend --ls or some such?
A: While command line account management is definitely in the works, we would really prefer it if you registered so you can make sure a file is actually yours before deleting. UPDATE: wsend -ls works from the command line to list your files. However you still need to register to use this command.
-
Q: I have an unregistered account, why is my file not loading?
A: We remove files from unregistered accounts when they become 30 days old or space is needed on the server whichever comes first.
-
Q: I have a free account, why are my files missing?
A: We remove files from free accounts when they become 30 days old or space is needed on the server whichever comes first.
-
Q: But why, that doesn't seem right, no other service does this?
A: The wsend program and service is primarily provided for sending files. We have to maintain the best service possible for paying users, once the paying user-base grows we can support more benefits for the unregistered and free accounts. This service is not meant to compete with other services that store files for free, it can be used as a quick and easy way to send files.
-
Q: Can I use the wsend script to interface with another web service?
A: By all means, its GPL licensed and you can adapt it to whatever service you would like or create your own.
- Q: I have a problem but it is not listed here, who should I ask?
A: While we will try to respond to all requests, you can contact us at https://wsend.net/about If you are a paying user we will definitely respond and will not rest till your problem is resolved. Just fill out the contact form with your email that is registered to your paid account. Paid accounts are so important to us because it not only keeps the lights on and the hard drives spinning, it validates what we are doing and it says you support us, you support the community, and you support an open internet where everyone can exchange ideas. You are also joining us in contributing to something larger than ourselves.
If you find wsend difficult to use, please open up a Github issue or if you see an area that can be improved send a pull request!
In this directory the executable bash script wsend is stored, along with the README.md documentation, the GPL COPYING licence, a file called version which stores the version and which wsend checks against the github repo to determine whether it should install updates, and a file called .id, which is an identifier for the command line user.
This file stores the version and wsend checks against the github repo to determine whether it should install updates.
This file stores an identifier for the command line user
This file stores a list of files that have been uploaded on this computer.
This file
The GPL licence
The executable bash script, this can send files and also install the ~.wsend/ directory. The only user file it changes is the .bashrc file by appending the alias to the end. If you have bash installed but use another popular shell it will install it to that .*rc file