mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 11:41:54 +00:00
26 lines
445 B
Plaintext
26 lines
445 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# joe
|
|
|
|
> Joe's own text editor.
|
|
> More information: <https://joe-editor.sourceforge.io>.
|
|
|
|
- Open a new file in JOE:
|
|
|
|
`joe`
|
|
|
|
- Open a specific file:
|
|
|
|
`joe {{path/to/file}}`
|
|
|
|
- Open a specific file, positioning the cursor at the specified line:
|
|
|
|
`joe +{{line}} {{path/to/file}}`
|
|
|
|
- Open a specific file in read-only mode:
|
|
|
|
`joe -rdonly {{path/to/file}}`
|