Skip to content

Commit 8a1f948

Browse files
committed
Merge pull request #428 from craigsdennis/patch-1
Avoid confusion by using different directory name
2 parents 4093f6c + 45d89c9 commit 8a1f948

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

en/intro_to_command_line/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -136,34 +136,34 @@ Here it is!
136136

137137
### Create directory
138138

139-
How about creating a Django Girls directory on your desktop? You can do it this way:
139+
How about creating a practice directory on your desktop? You can do it this way:
140140

141-
$ mkdir djangogirls
141+
$ mkdir practice
142142

143143
Windows:
144144

145-
> mkdir djangogirls
145+
> mkdir practice
146146

147-
This little command will create a folder with the name `djangogirls` on your desktop. You can check if it's there just by looking on your Desktop or by running a `ls` or `dir` command! Try it :)
147+
This little command will create a folder with the name `practice` on your desktop. You can check if it's there just by looking on your Desktop or by running a `ls` or `dir` command! Try it :)
148148

149149
> PRO tip: If you don't want to type the same commands over and over, try pressing the `up arrow` and `down arrow` on your keyboard to cycle through recently used commands.
150150
151151
---
152152

153153
### Exercise!
154154

155-
Small challenge for you: in your newly created `djangogirls` directory create a directory called `test`. Use `cd` and `mkdir` commands.
155+
Small challenge for you: in your newly created `practice` directory create a directory called `test`. Use `cd` and `mkdir` commands.
156156

157157
#### Solution:
158158

159-
$ cd djangogirls
159+
$ cd practice
160160
$ mkdir test
161161
$ ls
162162
test
163163

164164
Windows:
165165

166-
> cd djangogirls
166+
> cd practice
167167
> mkdir test
168168
> dir
169169
05/08/2014 07:28 PM <DIR> test
@@ -196,16 +196,16 @@ Windows:
196196
> cd
197197
C:\Users\olasitarska\Desktop
198198

199-
Now time to delete the `djangogirls` directory:
199+
Now time to delete the `practice` 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
203-
$ rm -r djangogirls
203+
$ rm -r practice
204204

205205
Windows:
206206

207-
> rmdir /S djangogirls
208-
djangogirls, Are you sure <Y/N>? Y
207+
> rmdir /S practice
208+
practice, Are you sure <Y/N>? Y
209209

210210
Done! To be sure it's actually deleted, let's check it:
211211

0 commit comments

Comments
 (0)