OK, I'm confused enough to ask for help now. My teacher wants to know
Quote:
|
"Use the cat utility with redirection as a simple editor to create a file in your home directory with your full name on the first line, and a blank second line."
|
He wants to know what the command is we used to create the document.
So far after a few hours of research and reading the best I have come up with is:
Code:
$ cat > Pl3th0r4x
Pl3th0r4x
^D
$
And then when I check to see the file I get:
Code:
$ echo Pl3th0r4x
Pl3th0r4x
$
No space.
Is echo showing me something different? In the gedit document "Pl3th0r4x" is saved with 2 lines, but it isn't reflecting that in the Terminal and thats what I think he is asking.