create files in shell script code example

Example 1: How do you create a file in shell script?

touch NewFile.txt

Example 2: create a new file in bash script

touch newfile_1.txt

Example 3: how to create file in bash script

to make file in a folder in git bash script we use the command line called touch

 steps to follow 
 1 enter in to that folder 
 2 write  "touch fileName"
 3 press enter
 
 eg i want to create a file called index.js
 touch index.js

Example 4: bash generate file

# syntax
touch <new-file-name>

# example
touch NewFile_1.txt

# -----------------------------------------------------
# FOR GENERATING MULTIPLE FILES

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

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