Skip to content

Instantly share code, notes, and snippets.

@filviu
Created October 11, 2021 09:18
Show Gist options
  • Save filviu/a2b8cc1f411b96e24196226e1b11124b to your computer and use it in GitHub Desktop.
Save filviu/a2b8cc1f411b96e24196226e1b11124b to your computer and use it in GitHub Desktop.
Update rclone to latest amd64 version.
#!/bin/bash
CURDIR="$(pwd)"
TMPDIR="$(mktemp -d)"
cd $TMPDIR
wget https://downloads.rclone.org/rclone-current-linux-amd64.deb
dpkg -i rclone-current-linux-amd64.deb
cd "${CURDIR}"
rm -rf "${TMPDIR}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment