|
|
|
|
|
|
4
|
|
4
|
|
|
5
|
1. In this lab students will learn to navigate their file system using only the terminal
|
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
|
## Overview
|
10
|
## Overview
|
|
|
|
|
|
|
79
|
|
79
|
|
|
80
|
- Use `touch` to create two files, called myfile1 and myfile2
|
80
|
- Use `touch` to create two files, called myfile1 and myfile2
|
|
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
|
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
|
|