Command-line file sharing
31–40 of 80 posts
Re: Command-line file sharing
#32That's great, you can encrypt stuff then as follows (on a Mac). brew install gpg gpg --gen-key gpg -ac To decrypt, take the returned URL: curl https://transfer.sh/1nKXr/file.encrypted | gpg -ad Someone can probably improve this!
Handy tip for OS X users: after creating the "transfer" alias, simply use transfer file.txt | pbcopy to get the link copied to your clipboard!
transfer file.txt | xclip
link is copied to your clipboard.Re: Command-line file sharing
#33I would love to use this for my own files, without expiration etc. Do you have any plans to open source this?
Maybe I don't understand what this service actually does. When you take away the file expiration and the convenience of not having to manage your own infrastructure what is left? I've had this script in ~/bin for years. SERVER="example.com" LOCATION="public_html/uploads" BASE_URL="http://$SERVER/uploads" scp "$1" "$SERVER:$LOCATION" echo "$BASE_URL/$1" | xclip -i
Re: Command-line file sharing
#34I use CloudApp for OS X for sharing files and it's pretty convenient. The best part is sharing screenshots with it. You take a screenshot, it is automatically uploaded to the cloud (no pun intended) and the link is copied to your Clipboard. You could not ask for anything simpler.
> You take a screenshot, it is automatically uploaded to my butt (no pun intended) and the link is copied to your Clipboard. No pun detected ;)
Re: Command-line file sharing
#35Re: Command-line file sharing
#36I use CloudApp for OS X for sharing files and it's pretty convenient. The best part is sharing screenshots with it. You take a screenshot, it is automatically uploaded to the cloud (no pun intended) and the link is copied to your Clipboard. You could not ask for anything simpler.
Re: Command-line file sharing
#37I would love to use this for my own files, without expiration etc. Do you have any plans to open source this?
Re: Command-line file sharing
#38Earlier quoted context omitted.
http://chunk.io
http://purrrl.link
Re: Command-line file sharing
#39http://curl.io/
I use curl.io from time to time and it has a big drawback: you need to visit curl.io to get your upload URL. transfer.sh got it right.
Re: Command-line file sharing
#40How do you intend to make money?