Skip to content

Commit 973f57a

Browse files
committed
Merge pull request #384 from Videocard/hemingwaycommandline
Run command line chapter through hemingway
2 parents fac6a95 + 9442b04 commit 973f57a

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

en/intro_to_command_line/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The following steps will show you how to use the black window all hackers use. I
1010
1111
## What is the command line?
1212

13-
The window, which is usually called the __command line__ or __command-line interface__, is a text-based application for viewing, handling and manipulating files on your computer (much like e.g. Windows Explorer or Finder on Mac, but without the graphical interface). Other names for the command line are: *cmd*, *CLI*, *prompt*, *console* or *terminal*.
13+
The window, which is usually called the __command line__ or __command-line interface__, is a text-based application for viewing, handling, and manipulating files on your computer. Much like Windows Explorer or Finder on Mac, but without the graphical interface. Other names for the command line are: *cmd*, *CLI*, *prompt*, *console* or *terminal*.
1414

1515
## Open the command-line interface
1616

@@ -54,22 +54,22 @@ or
5454

5555
> whoami
5656

57-
And then hit Enter. This is our result:
57+
And then hit 'Enter'. This is our result:
5858

5959
$ whoami
6060
olasitarska
6161

62-
As you can see, the computer just presented you your username. Neat, huh?:)
62+
As you can see, the computer has just printed your username. Neat, huh?:)
6363

64-
> Try to type each command, do not copy paste. You'll remember more this way!
64+
> Try to type each command, do not copy-paste. You'll remember more this way!
6565
6666
## Basics
6767

6868
Each operating system has a slightly different set of commands for the command line, so make sure to follow instructions for your operating system. Let's try this, shall we?
6969

7070
### Current directory
7171

72-
It'd be nice to know where are we now, right? Let's see. Type this command and hit enter:
72+
It'd be nice to know where are we now, right? Let's see. Type this command and hit 'Enter':
7373

7474
$ pwd
7575
/Users/olasitarska
@@ -110,7 +110,7 @@ So what's in it? It'd be cool to find out. Let's see:
110110

111111
### Change current directory
112112

113-
Maybe we can now go to our Desktop directory?
113+
Now, let's go to our Desktop directory:
114114

115115
$ cd Desktop
116116

@@ -184,7 +184,7 @@ Windows:
184184

185185
> cd ..
186186

187-
Making `cd` to `..` will change your current directory to the parent directory (which means the directory that contains your current directory).
187+
Using `..` with the `cd` command will change your current directory to the parent directory (this is the directory that contains your current directory).
188188

189189
Check where you are:
190190

@@ -196,7 +196,7 @@ Windows:
196196
> cd
197197
C:\Users\olasitarska\Desktop
198198

199-
Now time to delete the `djangogirls` directory.
199+
Now time to delete the `djangogirls` directory:
200200

201201
> __Attention__: Deleting files using `del`, `rmdir` or `rm` is irrecoverable, meaning _deleted files will be gone forever_! So, be very careful with this command.
202202
@@ -217,7 +217,7 @@ Windows:
217217

218218
### Exit
219219

220-
That's it for now! You can safely close the command line now. Let's do it the hacker way, all right?:)
220+
That's it for now! You can safely close the command line now. Let's do it the hacker way, alright?:)
221221

222222
$ exit
223223

@@ -241,7 +241,7 @@ Cool, huh?:)
241241
| mkdir | mkdir | create a new directory | **mkdir testdirectory** |
242242
|del | rm | delete a directory/file | **del c:\test\test.txt** |
243243

244-
These are just a very few of the commands you can run in your command line but you're not going to use anything more than that today.
244+
These are just a very few of the commands you can run in your command line, but you're not going to use anything more than that today.
245245

246246
If you're curious, [ss64.com](http://ss64.com) contains a complete reference of commands for all operating systems.
247247

0 commit comments

Comments
 (0)