Important Commands working with huge directory in gcloud

Important Commands working with huge directory in gcloud instance where I am using BITNAMI CLOUD LAUNCHER Making a public key in your UBUNTU system ssh-keygen cat dff-ssh-key cat dff-ssh-key.pub Copy and paste this key to you gcloud compute-engine->meta-data>ssh-keys. Making a tunnel with your localhost and gcloud database. ssh -N -L 8888:127.0.0.1:80 bitnami@IP Opening SFTP in …

Search a keyword in a directory using terminal

Hi fellows this is a very important command for a programmer and a terminal user. You don’t know where a function can be made within a project So this terminal command provides you the access to search within a directory. grep -r “newness” /home/shakalya/Desktop/swimnchill/twentyeleven I am searching ‘newness’ in the whole twentyeleven directory. You can …