HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

joe — Joe's own text editor. More information: <https://joe-editor.sourceforge.io/4.6/man.html>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
editorcommandtextjoecliownmore

Problem

How to use the joe command: Joe's own text editor. More information: <https://joe-editor.sourceforge.io/4.6/man.html>.

Solution

joe — Joe's own text editor. More information: <https://joe-editor.sourceforge.io/4.6/man.html>.

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}}

Code Snippets

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}}

Context

tldr-pages: common/joe

Revisions (0)

No revisions yet.