Linux: Create Text File on Linux Shell / Command Line
Table of Contents
This is a very typical case, the need to create a temp file on the command line quickly. Opening editor, writing content, save file and quit editor is not the fastest possible way. A faster way is to use the cat command with the name of the file and write contents of the file and give the end-of-file character (Ctrl-D).
This is guide, howto create (or append to) text file without text editor on Linux shell / command line.
Create Text File Without Text Editor on Command Line⌗
# Create file
$ cat > /tmp/temp_file_name.txt
some content
more content
and even more content
<ctrl-d>
# View file content
$ cat /tmp/temp_file_name.txt
some content
more content
and even more content
Append to Temporary File Without Editor on Command Line⌗
# Append to file
$ cat >> /tmp/temp_file_name.txt
append content
append more content
append even more content
<ctrl-d>
# View file content
$ cat /tmp/temp_file_name.txt
some content
more content
and even more content
append content
append more content
append even more content