Last active
July 2, 2019 21:04
-
-
Save andy-blum/587439bcc9950fc24d6551dd7ebba648 to your computer and use it in GitHub Desktop.
Less frequent terminal commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
# SSH COMMANDS | |
## | |
# SSH into AWS Server | |
ssh -i ~/KEY_LOCATION ubuntu@IP_OR_WEBSITE | |
# Copy files from server | |
# scp SOURCE DESTINATION | |
scp USER@SERVER:PATH ~/Desktop | |
# Copy files from AWS server | |
# scp -i KEY_LOCATION SOURCE DESTINATION | |
scp -i ~/Keys/KEY ubuntu@IP_ADDRESS/WEBSITE:PATH ~/Desktop | |
## | |
# TERMINUS COMMANDS | |
## | |
# Drush command on pantheon | |
terminus drush account.env [command] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment