
nano
List of commands for nano:
-
nano:ai:cb4d6 How to edit sources.list in debian fastes repositories$ nano /etc/apt/sources.listtry on your machineexplain this command
-
nano:ai:e9d1b Open the /etc/fstab file for editing using the nano text editor$ nano /etc/fstabtry on your machineexplain this command
-
nano:tldr:1cdd9 nano: Start the editor without using configuration files.$ nano --ignorercfilestry on your machineexplain 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 machineexplain 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 machineexplain this command
-
nano:tldr:902ba nano: Open a file and enable soft wrapping.$ nano --softwrap ${filename}try on your machineexplain 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 machineexplain 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 machineexplain this command