Skip to content

Instantly share code, notes, and snippets.

@alispx
Created October 9, 2015 09:33
Show Gist options
  • Save alispx/1116fb6a3d5195c6267d to your computer and use it in GitHub Desktop.
Save alispx/1116fb6a3d5195c6267d to your computer and use it in GitHub Desktop.
#!/bin/bash
ssh -T username@hostorip << EOSSH
cd /home/username/; ls -l;
wget -c http://example.com/file.tar.gz;
tar -zxvf file.tar.gz;
exit;
EOSSH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment