DEV Community

Discussion on: Comment with a command line command and explain what it is and how to use it.

Collapse
 
brunoj profile image
Bruno

I'll go first with a simple one: cd.

cd stands for "change directory". It accepts a directory as an argument,

i.e.

cd documents
Enter fullscreen mode Exit fullscreen mode

It takes a few other directives such as moving up one directory, moving to root, etc.

Here is a post getting into some of what you can do