Last active
July 11, 2018 21:46
-
-
Save tushar-borole/8bb404be1881b6129d6cc34de1a52a88 to your computer and use it in GitHub Desktop.
Terminal commands
This file contains hidden or 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
#scp file | |
scp -i default.pem /Applications/Kqed/kqed-new.zip [email protected]:/home/ec2-user | |
#scp folder | |
scp /path/to/source-file user@host:/path/to/destination-folder/ | |
#open current folder in webstorm | |
open -a WebStorm . | |
#run the shell script | |
chmod +x bar | |
./bar | |
#find file | |
#https://www.digitalocean.com/community/tutorials/how-to-use-find-and-locate-to-search-for-files-on-a-linux-vps | |
find / -type f -name "*.conf" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment