1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-05 18:15:24 +02:00
tldr/pages/common/nano.md

38 lines
965 B
Markdown
Raw Normal View History

2015-12-30 14:31:49 -05:00
# nano
> Text editor. An enhanced `pico` clone.
> See also: `pico`, `rnano`.
> More information: <https://nano-editor.org/dist/latest/nano.html>.
2015-12-30 14:31:49 -05:00
- Open specific files, moving to the next file after closing the previous one:
2021-07-28 15:10:07 +01:00
`nano {{path/to/file1 path/to/file2 ...}}`
2021-07-28 15:10:07 +01:00
- 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 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}}`
- Open a file in restricted mode (i.e. don't read/write to files not specified on the command-line):
`nano {{[-R|--restricted]}} {{path/to/file}}`
2025-03-12 21:05:58 +02:00
- Exit nano:
`<Ctrl x>`