# "Command-line Computing" Exercise

Before we start learning about Python or software development, it will be helpful for us to achieve a basic level of familiarity with the command-line. Throughout the semester, we will be using the command-line to navigate and manage our computer's filesystem, execute Python scripts, and perform other important tasks using various command-line utilities (CLIs).

Commands can differ based on which operating system and command-line application you're using, but all students are encouraged to learn the prevalent "unix-style" commands:

* On Mac OS, the default Terminal application will allow students to use unix-style commands.
* On Windows OS, the default Command Prompt application uses different commands, but installing the Git Bash application will allow students to use unix-style commands.

## References

* [Intro to the Command-Line - Mozilla](https://developer.mozilla.org/en-US/docs/Learn/Tools_and_testing/Understanding_client-side_tools/Command_line)

## Prerequisites

* [Local Development Environment Setup](https://prof-rossetti.gitbook.io/intro-to-python/exercises/local-dev-setup)

## Instructions

Follow along with one of the following guides:

* [Unix Command-Line / Bash](https://prof-rossetti.gitbook.io/intro-to-python/exercises/command-line-computing/mac-terminal) - RECOMMENDED FOR ALL STUDENTS (MAC OR WINDOWS)
* [Windows Command-Prompt](https://prof-rossetti.gitbook.io/intro-to-python/exercises/command-line-computing/windows-command-prompt) - NOT RECOMMENDED

> TIPS:
>
> * Pressing the up arrow will cycle through recent commands
> * Pressing tab will auto-complete filepaths
> * Typing "clear" and pressing enter (or just pressing "command + k" on Mac) will clear the screen
