> [!tldr] touch MYFILE.md && nano MYFILE.md Useful for creating an in-directory README from inside the terminal. ## Create ```shell touch my_file_name.txt ``` Creates the file. ## Open Editor ```shell nano my_file_name.txt ``` Do the editing. ### And save Three key sequences. 1. `ctrl+o` write out 2. `enter` (to confirm the name) 3. `ctrl+x` to quit **** # More ## Source - self