Reading Notes

Showcasing my progress during the TechEducator Full-Stack MERN Bootcamp. Explore through the 'Class Content' or read about me below!

View the Project on GitHub cailumleyshon/reading-notes

Week 1 Class 2 - The Coder’s Computer 🖥️



“What are four important features to look for in a text editor?”



“What do the following commands do?”


“pwd”

Print Working Directory

~ pwd
/home/username/documents

“ls”

Lists all the files in the current directory

~ ls
document.docx  image.jpg  report.pdf  presentation.pptx  data.csv  code.py  README.md  music.mp3  video.mp4  notes.txt

“cd”

Change Directory

~ cd ~/Desktop
~ mkdir myfolder
~ cd myfolder

“mkdir”

Make a Directory

~ mkdir myfolder

“touch”

Create empty files / update timestamp of current files

~ touch example.txt

Example Scenario Explained


cd projects
mkdir new-project
touch new-project/newfile.md
cd ..
ls projects/new-project

These commands are creating a new project folder, adding an empty Markdown file to it, and then checking the contents of the “new-project” directory to verify the file’s presence.