There are multiple ways in which you can create a file using the Mac Terminal, let us take a look at a few ways to do so,
1. Using touch command
If you want to create an empty file, simply use the command touch followed by the name of the file,
Example:% touch myfile.txt
% ls -l
total 0
-rw-r--r-- 1 code2care staff 0 Sep 22 12:45 myfile.txt
As you can see the file is created in the location where you run the command.
2. Redirect Echo Content of Standard Output to a new file
You make do an echo followed by a string that you want to write to a file.
Example:% echo "Write this to a new file" > myfile1.txt
% ls -l
total 8
-rw-r--r-- 1 code2care staff 0 Sep 22 12:45 myfile.txt
-rw-r--r-- 1 code2care staff 19 Sep 22 12:51 myfile1.txt
% cat myfil1.txt
Write this to file
You can also create a file using > filename and then type the text you want to write to the file, or simply press Control + D if you just want to create an empty file.
3. Using cat command
You can create a file and write to the file using the cat command,
Example:% cat > myfile3.txt
Write your text,
once you are done. Press Control + D to save and quit.
4. Using Nano Text Editor
This is one of the very effective ways of creating and writing a file on the Mac Terminal, Nano is the most user-friendly text editor for the console.
To create a new file, simply type nano followed by the file name,
Example:% nano myfile4.txt
Once you type the command, the file will be opened in the Terminal as an interactive UI, you can write the content of the file and press Control + X followed by a Y to save the file.
5. Using Vi (Vim) Text Editor
By far this is the most loved Text Editor available for the Terminal by computer programmers and System Admins, it works similar to Nano but is far more advanced when it comes to dealing with files.
Example:% vi myfile5.txt
This will open up a file editor, you can write content to the newly created file and press Escape followed by :wq! to save the file.
Conclusion
As we saw there are multiple ways in which we can create a new file, the quickest one to create a blank file is using the touch command and if you want to create and write to the file it's better to go with Nano or Vi Editors.
Facing issues? Have Questions? Post them here! I am happy to answer!
- How to list all users in Mac Terminal
- Docker Desktop needs privileged access macOS
- Mac: How to show count of files and folders in Finder
- How to Change Background Color TextEdit on Mac
- How to adjust MacBook Desktop icons size
- Test internet speed using macOS Terminal command
- How to change the default font and text size in Microsoft Excel for Mac
- How to install Java on macOS [Big Sur]
- How to come out of dquote prompt in Terminal - macOS/Linux
- How to Increase MacBook Trackpad Cursor Speed on macOS Ventura/Sonoma
- Fix: Microsoft Excel Quit Unexpectedly on Mac
- How to Adjust macOS System Font Size
- How to Quit Applications on Mac Using Terminal
- How to check zsh installed version using terminal
- Two Ways to Extract rar (*.rar) files on Mac
- How to Right Click on Mac Desktop?
- How to Add Brew to PATH M1/M2 Mac
- How to search (find) in macOS Terminal Console Text
- macOS 13 Ventura - The New About this Mac Window
- TextEdit Get the count of lines in a file
- How to run .sh file in Mac Terminal
- Google Search Hot Trends Screensaver for Mac OS X
- Check Reboot History Mac
- [Solution] Mac Update Stuck Preparing macOS Ventura 13.0 About 30 minutes remaining
- Display Safari URL address link on hover
- Convert String from uppercase to lowercase in Bash - Bash
- AppleScript Example with TextEdit - MacOS
- [Android] This view is not constrained vertically: at runtime it will jump to the top unless you add a vertical constraint - Android
- Fix - Error:Invalid Gradle JDK configuration found (Android Studio) - Gradle
- Notepad++ : Cannot load 64 or 32bit plugin Error. - NotepadPlusPlus
- Python raise error with message example - Python
- Fix: TypeError: set object is not subscriptable - Python
- Microsoft Teams meeting Full Screen mode option missing - bring it back - Teams