Guest User

Untitled

a guest
Nov 17th, 2017
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. Did you run into any issues?
  2. I did run into an issue when I was updating the Ruby software. I googled the problem, and found that it is a common issue
  3. when updating and installing dev tools on the Mac, particularly some of the Xcode tools. I was able to install everything
  4. after that.
  5.  
  6. How do you open Atom from your Terminal?
  7. Simply type "atom".
  8.  
  9. What is the file extension for a Ruby file?
  10. .rb
  11.  
  12. What is the Atom shortcut for hiding/ showing your file tree view?
  13. Command \
  14.  
  15. What is the Atom shortcut for quickly finding a file (fuzzy finder)?
  16. command p
  17.  
  18. What does pwd stand for, and how is this command helpful?
  19. In Unix and Linux-based systems, PWD stands for Present Working Directory. This command is useful for finding out where in the
  20. file tree the user is currently.
  21.  
  22. What does ls do? What about cd and mkdir?
  23. The ls command displays a list of files in the directory. cd changes the directory, and mkdir creates a directory/
  24.  
  25. What does hostname tell you, and what shows up in YOUR terminal when you type hostname?
  26. hostname tells you what your computer is called on the network, so you can use that name instead of IP addresses.
  27. Eliots-MBP.domain
  28.  
  29. Type the following commands into your Terminal to ensure you have Ruby, rbenv and Git installed. Take a screenshot that shows the versions of each of these, and post it as a comment in your Gist:
  30. which ruby
  31. git --version
  32. rbenv --version
  33.  
  34.  
  35. /usr/bin/ruby
  36. git version 2.15.0
  37. rbenv 1.1.1
Add Comment
Please, Sign In to add comment