There is no right or wrong choice when it comes to picking the best text editor. It ends up just being personal preference however there are 4 important features too look for.
pwd
- Shows where you are or what directory you are in.ls
- shows a list of all the things in our current locationcd
- allows us to change our current location by typing the command followed by the location ie cd [location
]mkdir
- Creates a directory in our current location. Need to specify the new directory name after command ie mkdir [directory_name]
touch
- Creates a file in our current location. File name needs to be specified after the command ie touch fileName.md
rm
- removes file. File name needs to be specified after command
cd projects
- We are ‘moving our location’ or changing our directory location to the projects Foldermkdir new-project
- We are creating a new folder in the projects folder called new-projecttouch new-project/newfile.md
- In the new-project folder, we are creating a Markdown File called newfilecd ..
- We are going back one level and will be in the projects folder.ls projects/new-project
- We are listing all the items that are in the new-project directory/folder