Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 310 Bytes

File metadata and controls

13 lines (9 loc) · 310 Bytes

Commands

The primary way you interact with a terminal is by running commands.

You start with a blank prompt and write something like the following.

$ echo Hello
Hello

The first word is the name of the program to run. In this case echo. Everything after that is an "argument" to the program.