Skip to content

Instantly share code, notes, and snippets.

@shreewatsa
Last active July 4, 2023 11:27
Show Gist options
  • Save shreewatsa/1a28142b39611fdd32270eb56c29f8f2 to your computer and use it in GitHub Desktop.
Save shreewatsa/1a28142b39611fdd32270eb56c29f8f2 to your computer and use it in GitHub Desktop.
Install softwares in remote machine
# Install fzf (fuzzy finder)
$curl -O https://github.com/junegunn/fzf/releases/download/0.41.1/fzf-0.41.1-linux_amd64.tar.gz;
# $wget https://github.com/junegunn/fzf/releases/download/0.41.1/fzf-0.41.1-linux_amd64.tar.gz;
$scp ./fzf* vm:/path/in/remote;
$tar -xvzf fzf-0.41.1-linux_amd64.tar.gz
$mv ./fzf /usr/local/bin/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment