Linux Commands Helper
💬 Your AI-powered Linux assistant
nano Command - Simple Text Editor
The nano command launches a simple, user-friendly text editor in the terminal. It is often used for quick edits to configuration files.
Syntax
nano [filename]
Examples
nano /etc/hosts
Edit the hosts file using nano.
Notes
- Use
Ctrl+O
to save,Ctrl+X
to exit. - nano is easier for beginners compared to vi or vim.