From 0e46ede99019023f65389d32976313e57f43d69d Mon Sep 17 00:00:00 2001 From: kevinclev Date: Thu, 9 Jan 2020 14:36:34 -0600 Subject: [PATCH 1/2] Add The AWS Way --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 906ce36..1289d4f 100644 --- a/README.md +++ b/README.md @@ -605,3 +605,17 @@ print('The universe is dead, VIM no longer exists'); 1. Try CTRL+C 2. Ask a senior engineer 3. Have senior engineer direct you to [how-to-exit-vim](https://github.com/hakluke/how-to-exit-vim) + + +## The AWS Way +1. In AWS EC2, select **Launch Instance**. +2. Launch an EC2 instance with a Linux based AMI. +3. ssh into the newly created EC2 instance +```shell +ssh -i ec2-user@ +``` +4. Launch vim +```shell +vim +``` +5. In the AWS EC2, select the newly created EC2 instance and terminate the instance. From ddba5f8d1a0d2b936b9b4533b4d6e546d494546c Mon Sep 17 00:00:00 2001 From: kevinclev Date: Thu, 9 Jan 2020 14:38:41 -0600 Subject: [PATCH 2/2] remove extra whitespace --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 1289d4f..ee2552b 100644 --- a/README.md +++ b/README.md @@ -606,7 +606,6 @@ print('The universe is dead, VIM no longer exists'); 2. Ask a senior engineer 3. Have senior engineer direct you to [how-to-exit-vim](https://github.com/hakluke/how-to-exit-vim) - ## The AWS Way 1. In AWS EC2, select **Launch Instance**. 2. Launch an EC2 instance with a Linux based AMI.