linux file command
Title
Question
Sir, kindly mention how to create file in linux? As you have only explained how to create directories in linux
Linux Working-with-Regular-Files 01-02 min 40-50 sec
Answers:
Kindly watch the tutorial "Ubuntu Desktop".
for creating a simple file you can use touch command like
touch (filename) this is the syntax of the touch command to create a file
also, you can use redirection to create file like cat >hello.txt
or you can use any terminal-based editor like
nano hello.txt
Login to add comment