Forked from
R3 / school / courses
1191 commits behind the upstream repository.
-
Laurent Heirendt authoredLaurent Heirendt authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
the_terminal.md 947 B
The Terminal (shell)
Starting the terminal presents itself with a line where you can enter a command
cesar@myComputer>
Often written, for covenience, as ```bash $ ```
When you open your terminal (shell), you are located in your home directory (unless otherwise configured), denoted as `~/`.
Essential Linux commands
List the contents of a directory
$ ls
Create a directory ```bash $ mkdir myNewDirectory ```
Change the directory to a specific folder ```bash $ cd myNewDirectory ```
Change the directory 1 level and 2 levels up ```bash $ cd .. # 1 level up
$ cd ../..
2 levels up
<div class="fragment">
<br>
Move a file or a directory
```bash
$ mv myFile.m myNewDirectory/.
Rename a file or a directory ```bash $ mv myFile.m myNewFile.m $ mv myNewDirectory myDirectory ```