Answers for "how to create file in bash script"

19

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
Posted by: Guest on April-28-2020
2

How do you create a file in shell script?

touch NewFile.txt
Posted by: Guest on October-15-2020
6

terminal command to create new file

touch filename.txt
Posted by: Guest on April-27-2020
0

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
Posted by: Guest on January-11-2021

Code answers related to "how to create file in bash script"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language