GDI Logo

Intro to Command Line

https://gdila.github.io/intro-to-command-line/

Like the man

man

The man command brings up the manual for the specified command. Use <space> or the arrow keys to page through and press q to exit.


$ man cd
Try it!

Love the tab

Tab completion autocompletes commands and filenames.

  • Pressing <tab> once autocompletes a unique instance.
  • Pressing <tab> twice gives you all the options available.

Try it!

Free Resources