Lightning AI Studios: Never set up a local environment again →

← Back to blog

EP 02: 8 Terminal Commands for Mac Users

Not sure how to get started with the Terminal? In this Lightning Bits episode, William and Sebastian show you how to use it on a Mac and share 8 key Terminal commands that will make working on your Mac easier. Watch the video, or continue reading below.

The Terminal

The Terminal is a command line interface (CLI) for your computer’s operating system (OS). Although you can access the Terminal through an application, it’s mostly used only by network administrators and technical users who want to minimize the impact on their computer’s resources, or who want to initiate an action that is not generally supported by the graphical user interface (GUI).

Opening the Terminal App

If you are on a Mac, you can find the Terminal in the Applications/Utilities folder:

Mac Terminal App

On a Mac you can also open the App using Spotlight search. Our favorite shortcut to open the Terminal.app is to press Command+Space and type terminal into Spotlight:

Opening the Mac Terminal using Spotlight

8 Key Commands

Here is a summary of the Terminal commands we cover in this episode:

  • ls: shows the contents of the current directory
  • mkdir NewDirectory: creates a new directory called NewDirectory
  • cd NewDirectory: navigates into a directory called NewDirectory
  • open .: opens the current directory in the macOS Finder app
  • clear: clears the terminal
  • touch some_file.py: creates a new, empty file called some_file.py
  • mv some_file.py main.py: renames the some_file.py file to main.py
  • rm main.py: removes (deletes) the file main.py
  • rm -r SomeDirectory: removes a folder called SomeDirectory

Watch the video for more details on each command!

Useful Links

Stay tuned for future episodes of Lightning Bits! Also, if you have any questions, please don’t hesitate to reach out on Slack!