reading-notes

The Coder’s Computer

Four important features in a Text Editor


Linux commands and their functions

Command Definition / Action
pwd Print Working Directory. Displays your current directory.
ls Lists the contents of a directory. Options such as -l or -a modify the output.
cd Change Directory. Moves you into another directory. Running cd alone returns you to your home directory.
mkdir Make Directory. Creates a new folder.
touch Creates a new, empty file or updates an existing file’s timestamps.

Example Commands

cd projects

mkdir new-project

touch new-project/newfile.md

cd ..

ls projects/new-project