Forrest logo
back to context overview

nano

List of commands for nano:

  • nano:ai:cb4d6 How to edit sources.list in debian fastes repositories
    $ nano /etc/apt/sources.list
    try on your machine
    explain this command
  • nano:ai:e9d1b Open the /etc/fstab file for editing using the nano text editor
    $ nano /etc/fstab
    try on your machine
    explain this command
  • nano:tldr:1cdd9 nano: Start the editor without using configuration files.
    $ nano --ignorercfiles
    try on your machine
    explain this command
  • nano:tldr:5f605 nano: Open a file and create a backup file (`path/to/file~`) on save.
    $ nano --backup ${filename}
    try on your machine
    explain this command
  • nano:tldr:715eb nano: Open specific files, moving to the next file when closing the previous one.
    $ nano ${filename1 filename2 ---}
    try on your machine
    explain this command
  • nano:tldr:902ba nano: Open a file and enable soft wrapping.
    $ nano --softwrap ${filename}
    try on your machine
    explain this command
  • nano:tldr:a3aee nano: Open a file and position the cursor at a specific line and column.
    $ nano +${line},${column} ${filename}
    try on your machine
    explain this command
  • nano:tldr:d8e0e nano: Open a file and indent new lines to the previous line's indentation.
    $ nano --autoindent ${filename}
    try on your machine
    explain this command
back to context overview