Skip to content

Instantly share code, notes, and snippets.

@amirrajan
Created August 27, 2026 04:55
Show Gist options
  • Select an option

  • Save amirrajan/ff05391e7b03bde6fed8eefaed784149 to your computer and use it in GitHub Desktop.

Select an option

Save amirrajan/ff05391e7b03bde6fed8eefaed784149 to your computer and use it in GitHub Desktop.
ed demonstration
echo hello world > hello-ed.txt
ed ./hello-ed.txt <<-S
%s/hello/hi
a
good bye
.
wq
S
cat ./hello-ed.txt
# hi world
# good bye
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment