Create a file: Difference between revisions

(New page: {{task}} In this task, the job is to create a new empty file called "output.txt" with no content and of size 0 byte and an empty directory called "docs". Assuming current directory or ful...)
 
Line 42:
}
}
 
==[[Bash]]==
[[Category:Bash]]
 
touch output.txt
touch /output.txt
mkdir docs
mkdir /docs
 
==[[DOS]]==
 
md docs
md \docs
Anonymous user