developerasun / myCodeBox-web

Open source code box for web developers.
Apache License 2.0
5 stars 0 forks source link

[RESEARCH] Window/terminal: create a file #274

Open developerasun opened 2 years ago

developerasun commented 2 years ago

topic : understanding how to create a file in window terminal

read this

To make a file with some text, do

echo some_text > hello_world.rb

Or, as seen in the comments,

type nul > hello_world.rb

(Note that you actually type type.)

Create a directory with,

mkdir (dir-name)

reference