create file in linux terminal 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: create file in linux

touch <filename>.<extension>

Example 3: linux make file

touch file1.txt #Create file1.txt

Example 4: terminal command to create new file

touch filename.txt

Example 5: linux how to add a file to directory

$ wget <url>

Example 6: create file linux

//will create test.txt
sudo touch test.txt

Tags:

Misc Example