Table of Contents
This updated guide examines How to Create a File in Unix and organizes the essential facts, background, and practical takeaways in clear American English.
Method 1of 4:
Creating a Blank File with Touch
Open a terminal window. If you're using a window manager, you can usually pressCtrl+Alt+Tto open a new terminal window. If not, log into the system on which you want to create a file through the console.
Usecdto change to the desired directory. If you're already in the directory where you'd like to create the file you can skip this step.
Typetouch newfilename and press?Enter. Replace newfilename with the desired file name. This creates a new blank file with that name in the current directory.[1]
Method 2of 4:
Creating a Text File with Cat
Open a terminal window. If you're using a window manager, you can usually pressCtrl+Alt+Tto open a new terminal window. If not, log into the system on which you want to create a file through the console.
Typecat > newfilename and press?Enter. Replace newfilename with whatever you'd like to call your new file. This opens a new blank line.
Type some text. Anything you type here will be added to the file.
Press?Enterto move to a blank line. You'll need to be on a blank line to finish the cat command.[2]
PressCtrl+D. This saves the file to the current directory with the name you entered.
- To view the vile, typecat filename and press?Enter.
Method 3of 4:
Creating a Text File with Vi
Open a terminal window. If you're using a window manager, you can usually pressCtrl+Alt+Tto open a new terminal window. If not, log into the system on which you want to create a file through the console.
Usecdto change to the desired directory. You'll want to be in the directory where you'd like to store your new file before opening the text editor.
Typeviand press?Enter. This opens the Vi (or Vim, depending on the version of Unix you're using) text editor.
- To edit a specific text file with Vi, typevi filename' instead.
Pressito enter input mode. Vi has two modes—insert mode and command mode. You must be in input mode to type text into the new file.
Type some text (optional). If you want to create a blank file you can just skip this step. Otherwise, type any text you wish to add now.
- You can't use your mouse or the arrow keys in Vi. If you make a mistake when typing, you'll need to run a command in command mode. PressEscto make the arrow keys available, use them to move the cursor to the location of the mistake, and then use any of these commands:
- x deletes the character under the cursor.
- dw deletes the current word.
- dd deletes the entire line.
- r replaces the letter under the cursor with the next one you type. This will automatically put you back into input mode after use.
- See How to Learn Vi to learn about more Vi commands.
- You can't use your mouse or the arrow keys in Vi. If you make a mistake when typing, you'll need to run a command in command mode. PressEscto make the arrow keys available, use them to move the cursor to the location of the mistake, and then use any of these commands:
PressEscwhen you're ready to save the file. This places you into command mode.
Type:w newfilename and press?Enter. Replace newfilename with the name of the file. This saves the file to the current directory.
- If you want to keep editing the file, pressito go back into input mode.
- The next time you want to save the file, you can just type:win command mode (no file name necessary).
Pressqand press?Enterto quit Vi. This returns you to the command line.
Method 4of 4:
Copying a File to a New File
Open a terminal window. If you're using a window manager, you can usually pressCtrl+Alt+Tto open a new terminal window. If not, log into the system on which you want to create a file through the console.
Usecdto change to the desired directory (optional). You'll be using the cp (copy) command to copy an existing file to another new file. You'll either need to move to the directory that contains the original file or know its full path.
Typecp originalfile newfile and press?Enter. Replace originalfile with the name of the file you want to copy, and newfile with the name of the desired new file. This creates a new file that contains the contents of the old file.
- Use the full path to the file if you're working with files outside of the current working directory (e.g.,cp /home/maria/textfile1 /home/maria/contracts/textfile2).
FAQ
What is How to Create a File in Unix about?
It provides a structured overview of file, explains the main context, and highlights practical takeaways for readers.
Why does this topic matter?
Understanding the main concepts helps readers evaluate the issue, avoid common mistakes, and make better-informed decisions.
How should readers use this information?
Use the guidance as a practical starting point, confirm details that may have changed, and follow current product, safety, or security recommendations.
Reader Comments 0
Sign in with email or Google to join the discussion.