First, learn to use terminal to create a directory
Mkdir--make Directory Creation
Usage: $ mkdir <directory>
Example:
1, $ mkdir Test001
Create a "Test001" directory under the current directory
2, $mkdir test001/test002
Create the directory "test001/test002" under the current directory, and generate the appropriate directory if the directory "test001/test002" does not exist.
3. If a file (or folder) named Test001 is present in the current directory, the $ mkdir Test001 command cannot be completed.
Second, learn to use the terminal into a directory
Usage: CD Path
Example:
1. A directory CD directory name under the current directory
2. A directory CD full path not in the current directory
3. Return to the parent directory CD.
Third, back to terminal, use the command to see the new file, the contents of the file list
Usage: get-content [-path] <String[]> [-readcount<int6 ...
Example: Get-content text001.txt
Stupid way to learn Python (exercise 0)