fokisuper.blogg.se

Atom for mac blank page
Atom for mac blank page













Experiment with creating a file in Atom and using ls in the terminal to see it.

atom for mac blank page

  • Return to your terminal and enter which atom.
  • Click the Atom menu in the top left corner.
  • Open Atom ( command-spacebar for spotlight, type Atom, and hit enter).
  • One of the things you’ll do frequently is open an entire folder (like when working on a project) in your text editor. Try rm -rf sample_directory to remove our previously created sample directory
  • Removing directories is a bit different.
  • then ls and you should see your user folder. ) is a reference to the parent directory of the current directory (one step up the tree). But the period is useful especially with Git which you’ll see soon. ) is a reference to the current directory. You can enter cd ~ from any folder on the system and you’ll jump back to your home directory.
  • The tilde ( ~) is a shortcut for your "home" directory.
  • Enter cd sample_directory to move into your new directory Go ahead and enter mkdir sample_directory to create a directory

    Atom for mac blank page full#

    Try which ruby to see the full path to your Ruby executable. which tells you where on the file system a program is.If you just use ls they won’t show up, but ls -lA will show them. bash_profile you’ll work with later, are hidden files. ls -lA will list the files in the current folder along with a bunch of info about them.ls will list the files in the current folder.But try typing pwd in the terminal and hit enter to print out your "present working directory" The prompt on the left tells you a bit about what folder you’re currently in.This window can open multiple tabs by typing command-t

    atom for mac blank page atom for mac blank page

    You now have a single terminal window.Open Terminal by typing command-spacebar to open Spotlight, then type Terminal and hit enter.If this is your first time using UNIX then you’ll need a few of the most essential pieces to be able to complete your work:













    Atom for mac blank page