Code Fellows reading notes
It is a software that you download or access online to write and manage text that you write to build web sites. Some recommended features to have on your text editor
Word Processors (Basic) | Code Editors |
---|---|
Microsoft Word | Github’s Atom |
Google Docs | Microsoft VS Code |
Apple Pages | Microsoft Visual Studio |
Notepad++ | |
Nano | |
Emacs |
Also known as the command line interface (cli), it is where you can navugate and do everything just as you would do navigating on the computer files interface. In the terminal you can find files, change directories, move and copy files, open files and make new files and folders.
Command | Description |
---|---|
PWC | present working directory |
cd | change direction. to move forward |
cd Enter |
to go back to the beggining |
cd .. | to back out of the folder/directory |
ls | list |
touch | create new files |
mkdir | make directory. to create a new folder |
rm | remove. to remove a file |
rf | recursive removal forced |
cp | to copy |
mv | move |