Answers for "create file ubuntu"

4

create file ubuntu

touch newfile
Posted by: Guest on March-31-2021
19

linux 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
0

how to create a new file in ubuntu

touch <filename.type>
Posted by: Guest on August-22-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language