Coder Social home page Coder Social logo

bash-navigation-osx's Introduction

Navigating with BASH - OS X

Objectives

  1. Understand how to navigate your files using Terminal.
  2. Use pwd to identify the current directory of your Terminal session.
  3. Use ls to list the files in the current directory of your Terminal session.
  4. Use cd and cd .. to change directories of your Terminal session.
  5. Use open . to open the current directory of your Terminal session in Finder.
  6. Use subl . to open the current directory in Sublime Text.

Overview

When you open a file on your computer, you locate it in by navigating through the directories on your computer's file system using Finder. Even files on your Desktop that you click on are stored in your computer's file system, your hard drive.

When you open an application from your Finder or Desktop, it always happens from the context of a "Working Directory" - the directory of your computer you were in when you executed the program. When you click on a file on your Desktop or Open an application from Your Dock or Applications directory, you are still opening a file in a directory. The Dock and Desktop are just abstractions for that directory to make them easy to access.

We're used to navigating and operating on these files using our GUI, our Graphical User Interface, provided by OS X. Our Terminal provides us with a Command Line Interface to navigate and operate on the files and folders of our computer, just like the GUI. As programmers, the Terminal is our workbench, not the GUI.

Let's learn to navigate our computer using the Terminal Command Line Interface.

pwd and Working Directories

When you open a Terminal session, you are placed within a directory of your file system. Whatever programs execute or work you do in your Terminal, like when you click on things in your GUI, that action happens in the context of a "Working Directory."

A "Working Directory" just means wherever on your computer's hard drive you are when you execute a program, again, whether through clicking on an icon in your GUI or running a command in your Terminal like learn hello. You did that from somewhere. We call that somewhere, wherever you currently are, a "Working Directory".

Open a Terminal and you'll be at your Command Line prompt, where your computer is waiting for instructions.

What's a Command Line Prompt

Our Command Line prompt, and maybe yours if you configured your environment through Learn, is represented by:

[16:19:43] ~
// ♥

The first line, [16:19:43] ~ is telling us the current time, so expect that part to be different for you, and our current working directory, ~, which means our Home directory, the default directory for you. We'll explain that idea of a home directory or ~ in a moment.

The next line, // ♥ is our command line prompt, where we can type instructions and commands for our computer to execute. // ♥ is a customized prompt that you got by setting up your environment through Learn. To us the symbols // ♥ remind us of the way, '//', of love, '♥'. That's our mantra when we're programming. And we think it looks pretty cool given how much time we spend in our Terminal.

More generally, the command line prompt is represented by a $.

If you've read other tutorials, you might be familiar with seeing command line instructions with a $ to represent the prompt. We try to follow this convention in our instructions but you might sometimes see // ♥ in images or code samples.

What can you do from a command line prompt? Everything and anything. A command line prompt is the most powerful interface in the world, from which every computer and piece of software can be created, controlled, molded, manipulated, and used.

pwd - Print Working Directory

Let's run our second Command Line program (our first was when you ran learn hello).

Type pwd from your prompt. You should see something like:

~ $ pwd
/Users/avi
~ $

From my home directory, ~, my Terminal presented me a prompt, $. I typed pwd and pressed Enter on my keyboard. My terminal responded with /Users/avi and returned me to my home directory, ~ and gave me a new prompt, $.

That's the standard procedure when you execute anything in Terminal, you enter a command from a prompt in a working directory, see output, and are returned to a new prompt in your working directory.

The pwd command is an acronym for "Print Working Directory." The pwd command prints the working directory of your Terminal session, the folder you are currently "in."

Knowing what directory you are working within is crucial when using your Terminal. You are opening files and running programs that live in directories and you need to make sure you're in the right directory for your task.

You never need to guess, if you're ever curious where you are or need to confirm you are where you think you are, type pwd.

~ - Your Home Directory

When you open a new Terminal session, you start in a default location in your file system called your Home Directory. When you use your computer, you are logged in under a user account, you're familiar with this as OS X asks you for your user's password occasionally.

Every user on your computer is given a "Home Directory" for their files. Your operating system, OS X, uses this "Home Directory" to keep your files private from other users that might share your computer.

On OS X, user home directories are stored within a folder Users in the root, or top level, main directory, of your harddrive, represented by /.

'/' means the main directory of your hard drive. Every file and folder on your computer lives somewhere inside of /.

/Users is the main Users directory in OS X. Within /Users, there is a folder for your username, the name of the account you use to login to your computer. My username is avi so my home directory is: /Users/avi. Yours will be different and you can see it by opening a new Terminal session and typing pwd.

The ~ (tilde) character is just a shortcut for your home directory, whatever it may be. Whenever you see your working directory or a file system path with a ~, you're home.

There's no place like ~. No Place Like Home

ls - Listing Files in a Directory

Within a directory, one thing you're probably curious about is "what files are in this directory?". You can list files within your working directory by executing ls:

~ $ ls
Applications  Development   Desktop
Documents     Downloads     Public

When we type ls in Terminal, we're asking our Terminal to list the files and folders in the current working directory.

In my home directory, ~ (which is really /Users/avi), I have 6 directories, Applications, Development, Desktop, Documents, Downloads, and Public. You probably have more.

cd - Changing Directories

When you open a new Terminal session, you'll be in a working directory, probably your home directory, ~. But how do we move around to other directories and change our working directory? You can use the cd command, which stands for Change Directory.

From your home directory, try:

~ $ cd Desktop
~/Desktop $

From within ~, our home directory, at our prompt $, we type cd Desktop. Our terminal will change the directory and enter our Desktop folder and our prompt will now indicate that our working directory is ~/Desktop. Your prompt might look a little different but you'll be in your Desktop directory. Confirm with: $ pwd (remember don't actually type $). pwd should output something like: /Users/avi/Desktop, the full path to your Desktop directory.

Once your working directory is your desktop, try ls and have your Terminal list any files that are on your desktop.

.. and .

How do you move from Desktop back up to your home directory? You can always move out of the current folder and back into the parent folder by typing cd ... Just like ~ is a shortcut for home directory, .. is a shortcut that always means "the directory above" or the "parent directory" of the current. Your file system is a tree like structure, with directories being inside other directories:

├── Users
    ├── avi
       └── Desktop

Desktop is within avi which is within Users which is at the top of my hard drive, the root, /. The path to my desktop is: /Users/avi/Desktop. From within Desktop, you would refer to the parent directory, avi as ...

In the same manner that .. means the directory above, the shortcut . means the current directory. You'll see why being able to refer to your current directory as . is helpful in a minute.

cd ~

You can also change directory back to your home directory from anywhere via cd ~. Remember that ~ is a shortcut that means home so if you type cd ~ you are telling your terminal to change the working directory to your home directory.

open - Opening Folders and Files

When you're in Terminal, sometimes it is useful to open the current directory you're in, your working directory, in Finder. You can do this with open .. That will pop open the OS X Finder view of the directory you are in.

subl - Opening Folders and Files in Sublime Text

Sometimes it's handy to be able to open a directory or a file right in your text editor. If you're using SublimeText, you can configure the shortcut subl to do just that!

To enable this shortcut, simply run

ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl

Now if you want to open an entire directory in Sublime Text, try subl .

atom — Opening Folders and Files in Atom

Alternatively, is you're using Atom, you can select "Install Shell Commands" from the menu under "Atom" — this will install the atom shortcut for you, which works just like subl above — simply run

atom .

to open your current directory.

Hint: Tab Autocomplete

When you're in Terminal, to autocomplete a directory or a command, start typing and then press TAB.

Resources

View Navigating with BASH - OS X on Learn.co and start learning to code for free.

bash-navigation-osx's People

Contributors

annjohn avatar aviflombaum avatar deniznida avatar isadia avatar pletcher avatar sabrina0 avatar test4learn avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

bash-navigation-osx's Issues

Copy Edit

This is just a quick copy edit of README on Navigating with Terminal.

Under the "Open - Opening Files and Folders" sub-heading. First paragraph: When you're in Terminal, sometimes it is useful to open the current "DIRCTORY" you're in, your working directory, in Finder.

Edit to "DIRECTORY"

Include tab completion

A note on this here will be helpful so that students won't have to type out the whole lab when they're cding

help

Nothing has worked properly since i have started using this website. I really wanted to start learning coding but from one mess to another it seems. And now this help staff don't want to help which i can't blame them because of how much i have to keep talking to them. Hasn't gave me much faith towards coding unfortunately :/

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.