
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-statustry on your machineexplain this command
-
ed:tldr:620b3 ed: Start an interactive editor session with an empty document and without diagnostics, byte counts and '!' prompt.$ ed -stry on your machineexplain this command
-
ed:tldr:633bb ed: Start an interactive editor session with an empty document and a specific prompt.$ ed --prompt='> 'try on your machineexplain 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 machineexplain this command
-
ed:tldr:8377f ed: Replace a string with a specific replacement for all lines.$ ,s/${regular_expression}/${replacement}/gtry on your machineexplain this command
-
ed:tldr:956e9 ed: Start an interactive editor session with an empty document and without diagnostics, byte counts and '!' prompt.$ ed --quiettry on your machineexplain this command
-
ed:tldr:98d5e ed: Start an interactive editor session with user-friendly errors.$ ed --verbosetry on your machineexplain this command
-
ed:tldr:a5ebb ed: Edit a specific file (this shows the byte count of the loaded file).$ ed ${filename}try on your machineexplain this command
-
ed:tldr:b5f37 ed: Start an interactive editor session with an empty document.$ edtry on your machineexplain this command