Skip to content

Instantly share code, notes, and snippets.

View omuleanu's full-sized avatar
🌟

Valentin Plamadeala omuleanu

🌟
View GitHub Profile
@sudevschiz
sudevschiz / copy_to_gcloud_vm.sh
Created September 4, 2018 07:19
Copy files from local (Windows or linux) to a VM in google cloud compute engine
#Easy way is to navigate to the folder where your file/folders lie and then -
gcloud compute scp FILENAME sudevchirappat@gcmbox:"/home/sudevchirappat/"
#Note : change FILENAME to the file you need upload
#If an entire folder needs to be moved use the recursion flag.
gcloud compute scp --recurse FOLDERNAME sudevchirappat@gcmbox:"/home/sudevchirappat/"