how to transfer file to aws ec2 using ssh code example
Example: send file to aws ec2 termnal
// To copy one file
scp -i path/to/key file/to/copy [email protected]:path/to/file
// To copy an entire directory
scp -i path/to/key -r directory/to/copy [email protected]:path/to/directory