terminal make file code example

Example 1: bash create file

# syntax
touch <new-file-name>

# example
touch NewFile_1.txt

# -----------------------------------------------------
# FOR CREATING MULTIPLE FILES

# syntax
touch <1st-file-name> <2nd-file-name> ... <Nth-file-name>

# example
touch NewFile_1.txt NewFile_2.txt NewFile_3.txt

Example 2: how to open a file using terminal

open ~/Desktop/filename.txt

Example 3: command line make file

touch term-paper.txt

Example 4: how to create new file through terminal

touch bar.txt

Example 5: how to create a file in terminal

$ mkdir -p turtle/images

Tags:

Misc Example