Command Line — Part I

Geek Chic
2 min readNov 8, 2022

Command Line is one of the essential things to learn when first learning to code. Here’s the part one of the command line commands series.

P.S. This part mostly covers the basics so if you are a more advance of a coder then this might be too basic for you. Nonetheless, it is a great way to refresh your memory.

The cd command prints working directory.

cd// Open the parent directory
cd ..
// Opens the parent of the parent directory
cd ../..
// You can move to an…

--

--