# Labs

## Text Editors Labs

## vi

```bash
root@board:~# vi hello.txt
Press "i"
Write some text
Press "ESC" then ":" then "wq" then "Enter"
root@board:~#
```

## nano

```bash
root@board:~# nano hello.txt
Write some text
Press "CTRL" + "X" then "Enter" then "Y" then "ENTER"
root@board:~#
```
