Skip to content

Latest commit

 

History

History
27 lines (24 loc) · 930 Bytes

README.md

File metadata and controls

27 lines (24 loc) · 930 Bytes

linux_ed

an implementation of linux 'ed' editor

Command Meaning: pprints the current line (ed maintains a current line) nprints line number of current line followed by TAB followed by current line %pprints all lines 7makes line #7 the current line aappends new text after the current line i inserts new text before the current line c changes the current line for text that follows d deletes the current line /text searches forward after current line for the specified text. The search wraps to the beginning of the buffer and continues down to the current line, if necessary s/old/new/ replaces old string with new in current line (google: C++ split or token) Q Quits the editor without saving

for testing purpose, clone and run the commend-

$./a.out < input.txt 

the result need to be similar to the result of the commend-

$ed < input.txt