ed 세션의 예제이다. 사용자가 입력한 명령어와 텍스트는 보통의 글씨체로 되어있고, ed의 출력물은 강조 표시로 되어있다.
a
ed is the standard Unix text editor.
This is line number two.
.
2i
.
,l
ed is the standard Unix text editor.$$This is line number two.$
3s/two/three/
,l
ed is the standard Unix text editor.$$This is line number three.$
w text
65
q
최종 결과는 다음의 문자를 포함하는 단순 텍스트 파일이다:
ed is the standard Unix text editor.
This is line number three.