Showcasing my progress during the TechEducator Full-Stack MERN Bootcamp. Explore through the 'Class Content' or read about me below!
Print Working Directory
~ pwd
/home/username/documents
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
Change Directory
~ cd ~/Desktop
~ mkdir myfolder
~ cd myfolder
Make a Directory
~ mkdir myfolder
Create empty files / update timestamp of current files
~ touch example.txt
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.