I'm a bit of a UNIX noob, but I'm trying to run the cat command to make a simple text file and it works great, however cat is never exited after making the file. For instance, I type cat > ~/mytextfile.txt and hit enter, the file is created but my cursor remains on a blank line.
|
feedback
|
|
You're telling | |||
|
feedback
|
|
You have to send an | |||||||
feedback
|
catis most often used for dumping the contents of one file into another, ex.cat file1 > file2or feeding a file to a pipe, ex.cat file | somecommand. If you simply want to create an empty file, use the commandtouch. If you wish to create a new file with a few simple words, or append a few lines to an existing file,echois a common solution. – Darth Android Jun 2 '10 at 11:20