mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
18 lines
428 B
Plaintext
18 lines
428 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# First Uplink
|
||
|
curl -L https://github.com/storj/storj/releases/latest/download/uplink_linux_amd64.zip -o uplink_linux_amd64.zip
|
||
|
if ! (which unzip > /dev/null)
|
||
|
then
|
||
|
apt install -y unzip
|
||
|
fi
|
||
|
unzip -o uplink_linux_amd64.zip
|
||
|
rm uplink_linux_amd64.zip
|
||
|
chmod 755 uplink
|
||
|
sudo mv uplink /usr/local/bin/uplink
|
||
|
|
||
|
# Then rclone
|
||
|
curl https://rclone.org/install.sh | sudo bash
|
||
|
|
||
|
echo "\n\nNow setup rclone with: rclone config\n"
|