Skip to content

Instantly share code, notes, and snippets.

@araddon
Last active August 29, 2015 14:12
Show Gist options
  • Save araddon/81db3da31e441bddca95 to your computer and use it in GitHub Desktop.
Save araddon/81db3da31e441bddca95 to your computer and use it in GitHub Desktop.
install bit torrent sync
#!/bin/bash
#
# v 0.02
cd /tmp
rm -f btsync.tar.gz
# wget http://download-new.utorrent.com/endpoint/btsync/os/linux-x64/track/stable -O btsync.tar.gz
wget http://usyncapp.com/2.0.30/bittorrent-sync_x64.tar.gz -O btsync.tar.gz
rm -rf /usr/local/bin/btsync
tar -C /usr/local/bin -xzf btsync.tar.gz
chmod +x /usr/local/bin/btsync
rm btsync.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment