Change nano wording for scripts

This commit is contained in:
Ryan Daugherty 2017-06-23 15:28:43 -06:00
Родитель b10855c622
Коммит 703f8d27fe
3 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -95,7 +95,7 @@ View the registry user interface in a web browser.
#### Step10
Lets make a change to an HTML file in the cloned project. Running the command below will open /applications/hello-kenzan/index.html in the nano text editor. Change some text inside one of the <p> tags. For example, change “Hello from Kenzan!” to “Hello from Me!”. When youre done, press Ctrl+X to close the file, type Y to confirm the filename, and press Enter to write the changes to the file.
Lets make a change to an HTML file in the cloned project. Open the /applications/hello-kenzan/index.html file in your favorite text editor, or run the command below to open it in the nano text editor. Change some text inside one of the <p> tags. For example, change “Hello from Kenzan!” to “Hello from Me!”. When youre done in nano, press Ctrl+X to close the file, type Y to confirm the filename, and press Enter to write the changes to the file.
`nano applications/hello-kenzan/index.html`
@ -383,7 +383,7 @@ Spin up several instances of the puzzle service by moving the slider to the righ
#### Step9
Edit applications/puzzle/common/models/crossword.js in the nano editor. You'll see a commented section on lines 42-43 that indicates to uncomment a specific line. Uncomment line 43 by deleting the forward slashes. Press Ctrl+X to close the file, type Y to confirm the filename, and press Enter to write the changes to the file.
Edit applications/puzzle/common/models/crossword.js in your favorite text editor, or edit it in nano using the command below. You'll see a commented section on lines 42-43 that indicates to uncomment a specific line. Uncomment line 43 by deleting the forward slashes. To save in nano, press Ctrl+X to close the file, type Y to confirm the filename, and press Enter to write the changes to the file.
`nano applications/puzzle/common/models/crossword.js`

Просмотреть файл

@ -31,7 +31,7 @@ parts:
- cap: View the registry user interface in a web browser.
com: minikube service registry-ui
- cap: Lets make a change to an HTML file in the cloned project. Running the command below will open /applications/hello-kenzan/index.html in the nano text editor. Change some text inside one of the <p> tags. For example, change “Hello from Kenzan!” to “Hello from Me!”. When youre done, press Ctrl+X to close the file, type Y to confirm the filename, and press Enter to write the changes to the file.
- cap: Lets make a change to an HTML file in the cloned project. Open the /applications/hello-kenzan/index.html file in your favorite text editor, or run the command below to open it in the nano text editor. Change some text inside one of the <p> tags. For example, change “Hello from Kenzan!” to “Hello from Me!”. When youre done in nano, press Ctrl+X to close the file, type Y to confirm the filename, and press Enter to write the changes to the file.
com: nano applications/hello-kenzan/index.html
- cap: Now lets build an image, giving it a special name that points to our local cluster registry.

Просмотреть файл

@ -28,7 +28,7 @@ parts:
- cap: Spin up several instances of the puzzle service by moving the slider to the right and clicking Scale. For reference, click on the Submit button, noting that the green hit does not register on the puzzle services.
com: echo ''
- cap: Edit applications/puzzle/common/models/crossword.js in the nano editor. You'll see a commented section on lines 42-43 that indicates to uncomment a specific line. Uncomment line 43 by deleting the forward slashes. Press Ctrl+X to close the file, type Y to confirm the filename, and press Enter to write the changes to the file.
- cap: Edit applications/puzzle/common/models/crossword.js in your favorite text editor, or edit it in nano using the command below. You'll see a commented section on lines 42-43 that indicates to uncomment a specific line. Uncomment line 43 by deleting the forward slashes. To save in nano, press Ctrl+X to close the file, type Y to confirm the filename, and press Enter to write the changes to the file.
com: nano applications/puzzle/common/models/crossword.js
- cap: Commit and push the change to your forked Git repo.