add nano to linux basics

This commit is contained in:
Lee 2023-06-27 09:07:18 +01:00
parent f859c5d8e5
commit b333976596

@ -37,6 +37,9 @@ This guide provides a brief introduction to Linux, including basic commands and
## Text Processing
There are alternatives to nano, but it is the easiest to use.
- Edit a file: `nano <file>`
- View a file: `cat <file>`
- View a file (with line numbers): `cat -n <file>`
- Get the beginning of a file: `head <file>`