Output of the SED command? sed "s/happy/enchanted/g" chap1
deletes the lines starting with happy.
replaces each occurrence of the word happy found in the file chap1 with the word enchanted.
displays each line in the file chap1 that contains the word happy.
None.