Windows: command line: how I create a file
Self-tutoring about Windows: the tutor mentions how he creates a file from the command line. To create the file “new_file.txt” from the command prompt, I type in echo “hello” > new_file.txt The file is created with the word “hello” inside. …