How to Create and Edit Text File in Linux by Using Terminal
Part 1 of 4:
Opening Terminal
- Open Terminal. To do so, click Menu, then find the Terminal app--which resembles a black box with a white ">_" in it--and click on it. You'll typically find Terminal in a bar on the left side of the Menu window.
- You can also click the search bar at the top of the Menu window and then type in terminal to search for it.
- Most Linux Distros open the Terminal as well, when pressing Ctrl+Alt+T.
- Type ls into Terminal, then press ↵ Enter. Terminal opens to your home directory, but the ls command displays every folder in your current directory. To create a text file in one of these directories, you'll need to change the current directory.
- Find a directory in which you wish to create a text file. Any directory name listed beneath the ls command (e.g., "Desktop") is a place to which you can navigate.
- You CAN create and edit files outside of this directory, but be aware that this may cause fatal problems. If you're sure about doing so, use the command ls / to see and navigate through the root directory, and prefix your commands with sudo when opening the text editor. More on that later.
- Type cd directory. You'll replace "directory" with your preferred directory's name. This command changes Terminal's focus from the current directory to the one you name.
- For example, you would type cd Desktop to shift Terminal's command location to the Desktop directory.
- If you want to create a text file in a specific folder within your selected directory, you'll place a "/" after the directory and then type in the folder's name. For example: for a folder named "Misc" in the Documents directory, you'd type cd Documents/Misc.
- Press ↵ Enter. Doing so will run your command, thereby shifting Terminal's target directory from your home directory to the one you specified.
- Decide on a text editing program. You can create a simple text file quickly, or you can use either Vim or Emacs to create and edit an advanced file. Now that you're in the directory in which you wish to place your text file, it's time to proceed with actually creating it.
Part 2 of 4:
Creating a Quick Text File
- Type
cat > filename.txt
into Terminal. You'll replace "filename" with your preferred text file name (e.g., "sample").- For example: when creating a file named "kitty", you'd type cat > kitty.txt.
- Press ↵ Enter. Doing so will create a new text file with the specified name in your current directory. Your cursor will appear on a blank line in Terminal.
- Enter your document's text. You can simply type as you typically would for any other text document. To save the current line of text and jump to the next line, you'll press ↵ Enter.
- If you have the text file's directory open, you can also simply double-click the text file when it appears to perform this step.
- Press Ctrl+Z. This key command will save your work and return you to the Terminal command line, allowing you to continue entering commands.[1]
- Type
ls -l filename.txt
into Terminal. You'll replace "filename" with the text file's name. This command will locate your file, thus ensuring that it was safely created in your directory.[2]- For example: to open a file named "textfile", you would type ls -l textfile.txt.
- The letters in this code are lowercase "L", not uppercase "i".
- Press ↵ Enter. Doing so should display the time, date, and name of your file on the following line, thus indicating that it was created and saved in your selected directory.
Part 3 of 4:
Using Vim
- Type
vi filename.txt
into Terminal. The "vi" part of this command selects the Vim text editor as the program to use. You'll replace "filename" with the name you wish to assign to your new file.- For a file named "tamins", for example, you'd type vi tamins.txt.
- If your current directory has a file by the same name, this command will instead open that file.
- Press ↵ Enter. This will create your new file and open it in the Vim editor. You should see a blank Terminal window with a tilde (~) on each line, as well as your text file's name at the bottom of the window.
- Press your computer's i key. Doing so will place your document in "Insert" mode, wherein you can enter text as needed.
- You should see -- INSERT -- pop up at the bottom of the window when you press the I key.
- Enter your document's text. You can simply type as you typically would for any other text document. To save the current line of text and jump to the next line, you'll press ↵ Enter.
- Press the Esc key. It's typically in the upper-left corner of your computer's keyboard. This key will place Vim in "Command" mode.
- You should see a cursor appear at the bottom of the window.
- Type
:w
into Terminal and press ↵ Enter. This command will save your document as it currently is. - Type
:q
into Terminal and press ↵ Enter. Doing so will quit out of Vim and return you to Terminal's main interface. Your text file is now in your specified directory.- You can check for the text file by typing ls into Terminal and pressing ↵ Enter and then looking for the file's name.
- You can also type :wq to save and quit in one command.
- Reopen the file from the Terminal window. Just as you did to create the file, you'll type vi filename.txt to open the file. This time when you open the file, you should see any saved changes that you made.
Part 4 of 4:
Using Emacs
- Type
emacs filename.txt
into Terminal. You'll replace "filename" with your preferred name for the text file. - Press ↵ Enter. As long as your text file's name isn't a duplicate of an existing text file in your current directory, this command will open a new text file in the Emacs editor.
- For example: a file named "newfile" would require you to type emacs newfile.txt.
- If you entered an existing text file name, this command will instead open the file in question.
- Get to know Emacs commands. Emacs comes complete with tons of powerful commands that let you navigate around a document, look up related or help information, manipulate text, and understand your code. These commands fall into two types: Control commands and Meta commands.
- Control commands are written like this: C-. To execute a Control command, you'll hold down the Ctrl key and press the specified letter key at the same time (e.g., Ctrl and A).
- Meta (or Escape) commands are written like so: M- or ESC . The "M" refers to a computer's Alt key or Esc key, since not all computers have the Alt key.
- A command written like C-a b (or M-a b) will require you to hold Ctrl (or Alt or Esc) while pressing the first key (e.g., a, then release both keys and immediately press the second key (e.g., b).
- Enter your document's text. You can simply type as you typically would for any other text document. To save the current line of text and jump to the next line, you'll press ↵ Enter.
- Press Ctrl+X, then press S. Doing so will save your file.
- Press Ctrl+X, then press Ctrl+C. This will exit the Emacs text editor and return you to your directory in Terminal. Your text file should now be saved under your selected name in this directory.
- Re-open your text file. To do so, simply type emacs filename.txt into Terminal. As long as you're in the same directory as is the file, doing this will open your text file in Emacs, at which point you may resume editing it if you please.
3.3 ★ | 4 Vote
You should read it
- How to Create and Edit Text Files Using Terminal on Linux
- How to customize Terminal on Mac
- How to fix 'The File or Directory is Corrupted and Unreadable' error
- Manage files and folders in Python
- 6 interesting terminal commands on Mac
- Translate images into text, convert image text to text
- Is Vim or nano the best Terminal editor?
- How to use Terminal on a Mac
May be interested
- How to play Game Boy games on Linux Terminalthe linux terminal, while certainly a fun place to be, isn't particularly famous as a console gaming platform - thanks largely to its limited ascii and braille output.
- Create and edit Text boxes in Wordhow to create and edit a text box in word 1. create text box. step 1: go to the insert - text - text box tab - select the type of textbox to create: step 2: enter the content to create the text box and change the font style and font for the text box.
- How to use Linux Terminal as a computerjoin tipsmake.com to learn how to use the terminal in linux as a computer, regardless of which distribution you are running, via the following article!
- Micro editor in Unix / Linuxthere are many ways to edit files in unix and for me, one of the best ways is to use the editor to edit the micro screen orientation. this editor lets you edit the lines of content with other lines in the file.
- How to fix the problem of being unable to enter Terminal in Linuxnothing is perfect and sometimes, even terminal can stop responding or ignore what you type. if your terminal crashes and you can't enter it, here are some of the most common causes and solutions for them.
- Make Terminal More Fun with These 8 Linux Tools!these tools will help you be more efficient, productive, and even have more fun working in terminal. let's take a look at some of our favorite command line tools!
- The Cat command in Linuxthe cat command (short for 'concatenate') is one of the most frequently used commands in operating systems like linux / unix. the cat command allows users to create one or more files, view file contents, join files, and redirect output in a terminal or file.
- 7 Ways to Restart Linux from Terminalrestarting linux from the terminal may seem difficult, but don't worry, it's quite simple once you know the right commands. restarting linux is necessary after updating, troubleshooting, or performing system maintenance.
- 5 interesting entertainment games in Linux Terminalif you are looking to learn how to use the linux terminal, a great approach for beginners is to install and play some simple games.
- How to run 2 or more Terminal commands at the same time on Linuxif you use linux, you probably know how to use useful commands to work with files, install software and launch programs. however, one thing you don't know is that you can still run multiple commands at the same time.