Making Folders and Files with the Command Line

Fundamentals · Lesson 5 ·


And with a few quick keystrokes, we create something out of nothing.

Learn these basic commands

$ touch index.html  
#creates a new file named index.html
#Windows: use "echo.> your_file.txt"

$ mkdir hello 
#Makes a new directory (folder) named hello