Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions content/terminal-basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,13 @@ man sudo
```

The `man` command is short for manual. You can type the `man` command in front of any command that you want more information about.

```bash
sudo apt remove [package]
```
The `remove` command will remove a particular package from your computer.

```bash
sudo apt autoremove
```
This `autoremove` command will automatically remove unused packages from your computer.