Which of the following statements is true?

Text Editors >>> Which of the following statements is true? >>> Linux for Developers

 

Both editors do not embed any special information, so any text editor can be used on a file

===================================

$ echo line one > myfile

$ echo line two > myfile

$ echo line three > myfile

$ echo line one > myfile

$ echo line two >> myfile

$ echo line three >> myfile

 

$ echo -e ‘line one\nline two\nline three ‘ > myfile

 

$ cat << EOF > myfile

> line one

> line two

> line three

> EOF

$

===================================

vi has these command modes

===================================

vi and emacs have very partisan advocates who waste their time fighting

===================================

vi can be installed with a very small size and is always available