Forrest logo
back to context overview

ed

List of commands for ed:

  • ed:tldr:58420 ed: Start an interactive editor session without exit status change when command fails.
    $ ed --loose-exit-status
    try on your machine
    explain this command
  • ed:tldr:620b3 ed: Start an interactive editor session with an empty document and without diagnostics, byte counts and '!' prompt.
    $ ed -s
    try on your machine
    explain this command
  • ed:tldr:633bb ed: Start an interactive editor session with an empty document and a specific prompt.
    $ ed --prompt='> '
    try on your machine
    explain this command
  • ed:tldr:79c54 ed: Start an interactive editor session with an empty document and a specific [p]rompt.
    $ ed -p '> '
    try on your machine
    explain this command
  • ed:tldr:8377f ed: Replace a string with a specific replacement for all lines.
    $ ,s/${regular_expression}/${replacement}/g
    try on your machine
    explain this command
  • ed:tldr:956e9 ed: Start an interactive editor session with an empty document and without diagnostics, byte counts and '!' prompt.
    $ ed --quiet
    try on your machine
    explain this command
  • ed:tldr:98d5e ed: Start an interactive editor session with user-friendly errors.
    $ ed --verbose
    try on your machine
    explain this command
  • ed:tldr:a5ebb ed: Edit a specific file (this shows the byte count of the loaded file).
    $ ed ${filename}
    try on your machine
    explain this command
  • ed:tldr:b5f37 ed: Start an interactive editor session with an empty document.
    $ ed
    try on your machine
    explain this command
back to context overview