Chaitali Patel 7 лет назад
Родитель
Сommit
ba64bb9703
1 измененных файлов: 2 добавлений и 2 удалений
  1. 2
    2
      README.md

+ 2
- 2
README.md Просмотреть файл

@@ -4,7 +4,7 @@
4 4
 
5 5
 1. In this lab students will learn to navigate their file system using only the terminal
6 6
 
7
-2. Students will practice using the following commands to traverse directories and investigate their contents: `pwd`, `ls`, `cd`, `cat`, `less`, `grep`...
7
+2. Students will practice using the following commands to traverse directories and investigate their contents: `pwd`, `ls`, `cd`, `cat`, `less`, `grep`....
8 8
 
9 9
 
10 10
 ## Overview
@@ -79,7 +79,7 @@ To create a file using touch, simply type the command followed by the name of th
79 79
 
80 80
 - Use `touch` to create two files, called myfile1 and myfile2
81 81
 - Try using `touch` to create three more files, but all in the same command. Just give touch the filenames you want one right after the other, separated by a space
82
-- Use the `ls -lT` (that's a lowercase 'L' after the dash) command to see the full timestamps of the files you just created. Notice that the first two are different but the last three are all the same.
82
+- Use the `ls -lT` (that's a lowercase 'L' after the dash) command to see the full timestamps of the files you just created. Notice that the first two are different but the last three are all the same..
83 83
 
84 84
 -
85 85