William Brown 8 gadus atpakaļ
vecāks
revīzija
08881a9464
2 mainītis faili ar 4 papildinājumiem un 3 dzēšanām
  1. Binārs
      .DS_Store
  2. 4
    3
      README.md

Binārs
.DS_Store Parādīt failu


+ 4
- 3
README.md Parādīt failu

@@ -1,3 +1,5 @@
1
+This is some changes to be able to pull request the lab
2
+
1 3
 # Console Lab Level 1
2 4
 
3 5
 ## Objectives
@@ -94,7 +96,7 @@ To create a file using touch, simply type the command followed by the name of th
94 96
 
95 97
 There are many text editors out there. We will be using an editor called VIM (short for VI iMproved -- it is a clone of the editor VI with some improvements). Other options that you can explore on your own include emacs and nano (a clone of a program called pico). Here are the VIM commands we'll use along with a few other useful basics (there are many, many, many many more):
96 98
 
97
-- `:w` - Write; writes the current contents of the buffer (editor) to a file. 
99
+- `:w` - Write; writes the current contents of the buffer (editor) to a file.
98 100
 - `:q` - Quit; Quits VIM. Complains if you have unsaved changes (use `:w` first, or `:q!` to force quit and abandon your changes)
99 101
 - `:set number`/`:set nonumber` - Enables/disables line numbers.
100 102
 - `a` - Switch to insert mode after the current character. `A` goes to the end of the line instead.
@@ -175,7 +177,7 @@ Now let's practice one more backgrounding technique with a different command.
175 177
 - Now you're stuck without your prompt; but we can fix that! Press `Ctrl`+`Z` to suspend (not kill) that program.
176 178
 - Now you've got your terminal back, but if you type `jobs` you'll see that python is currently stopped. You can bring it back with `fg`, but that will block your prompt again; instead, use `bg` to resume it in the background.
177 179
 - Now that you've resumed python in the background, you can see it listed as running in `jobs`. Bring it back to the foreground with `fg` and then kill it with `Ctrl`+`C`
178
- 
180
+
179 181
 
180 182
 ## Other Resources
181 183
 
@@ -192,4 +194,3 @@ The next lab is [here](https://github.com/Zipcoder/ZCW-Microlabs-Git).
192 194
 2. "more or less" http://unix.stackexchange.com/questions/81129/what-are-the-differences-between-most-more-and-less
193 195
 3. "Command Line Crash Course" http://learnpythonthehardway.org/book/appendixa.html
194 196
 4. "VIM 101" https://www.linux.com/learn/vim-101-beginners-guide-vim
195
-