1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 23:55:26 +02:00
tldr/pages/common/nano.md

37 lines
806 B
Markdown
Raw Normal View History

2015-12-30 14:31:49 -05:00
# nano
> Command-line text editor. An enhanced `Pico` clone.
2019-06-04 10:00:05 +01:00
> More information: <https://nano-editor.org>.
2015-12-30 14:31:49 -05:00
- Start the editor:
2021-07-28 15:10:07 +01:00
`nano`
- Start the editor without using configuration files:
2015-12-30 14:31:49 -05:00
2025-03-12 21:05:58 +02:00
`nano {{[-I|--ignorercfiles]}}`
- Open specific files, moving to the next file when closing the previous one:
`nano {{path/to/file1 path/to/file2 ...}}`
- Open a file and position the cursor at a specific line and column:
`nano +{{line}},{{column}} {{path/to/file}}`
2015-12-30 14:31:49 -05:00
- Open a file and enable soft wrapping:
2015-12-30 14:31:49 -05:00
2025-03-12 21:05:58 +02:00
`nano {{[-S|--softwrap]}} {{path/to/file}}`
2015-12-30 14:31:49 -05:00
- Open a file and indent new lines to the previous line's indentation:
2015-12-30 14:31:49 -05:00
2025-03-12 21:05:58 +02:00
`nano {{[-i|--autoindent]}} {{path/to/file}}`
- Open a file and create a backup file (`path/to/file~`) on save:
2025-03-12 21:05:58 +02:00
`nano {{[-B|--backup]}} {{path/to/file}}`
- Exit nano:
`<Ctrl x>`