logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

Edit Text - Control Text Files with ed | Online Free DevTools by Hexmos

Edit text files directly with ed, the original Unix text editor. Replace strings, navigate lines, and modify content efficiently. Free online tool, no registration required.

ed

The original Unix text editor. See also: awk, sed. More information: https://www.gnu.org/software/ed/manual/ed_manual.html.

  • Start an interactive editor session with an empty document:

ed

  • Start an interactive editor session with an empty document and a specific prompt:

ed {{[-p|--prompt]}} '{{> }}'

  • Start an interactive editor session with user-friendly errors:

ed {{[-v|--verbose]}}

  • Start an interactive editor session with an empty document and without diagnostics, byte counts and ‘!’ prompt:

ed {{[-q|--quiet]}} {{[-s|--script]}}

  • Start an interactive editor session without exit status change when command fails:

ed {{[-l|--loose-exit-status]}}

  • Edit a specific file (this shows the byte count of the loaded file):

ed {{path/to/file}}

  • Replace a string with a specific replacement for all lines:

,s/{{regex}}/{{replacement}}/g<Enter>

  • Exit ed:

q<Enter>

See Also