0

In Mac OS a new file can be created from the terminal by using the touch command. For example:

$ touch hello_world.rb.

Is there a way to create a new file of any type in cmd for Windows?

Sean Hetzel
  • 301
  • 1
  • 2
  • 7

1 Answers1

2
echo some_text > hello_world.rb
Litisqe Kumar
  • 2,240
  • 4
  • 23
  • 38
Sean Hetzel
  • 301
  • 1
  • 2
  • 7