Skip to content

Instantly share code, notes, and snippets.

@astro
Created January 26, 2012 23:23
Show Gist options
  • Save astro/1685803 to your computer and use it in GitHub Desktop.
Save astro/1685803 to your computer and use it in GitHub Desktop.
Quick Sharing On The Local Chaos Bay
#!/bin/bash -e
URL=http://chaosbay.hq.c3d2.de
if [ -z "$1" ]; then
echo "Usage: $0 <file/dir>"
exit 2
fi
if [ -x $(which mktorrent) ]; then
mktorrent -a $URL/announce "$1"
else
buildtorrent -a $URL/announce "$1" "$1.torrent"
# createtorrent?
fi
curl -X POST -F "file=@$1.torrent" $URL/add
rtorrent "$1.torrent"
# transmission-gtk? ...?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment