Guest User

Untitled

a guest
Feb 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. Open the prework gist you created earlier, and answer these questions about the reading in your gist:
  2.  
  3. Did you run into any issues?
  4. -- The instructions are a little convoluted, but manageable overall.
  5.  
  6. How do you open Atom from your Terminal?
  7. -- 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. -- cmd-\
  14.  
  15. What is the Atom shortcut for quickly finding a file (fuzzy finder)?
  16. -- cmd-p or cmd-t
  17.  
  18. What does pwd stand for, and how is this command helpful?
  19. -- Print Working Directory or Present Working Directory
  20. -- The command is useful, as it orientates the user to their current location within the file system.
  21.  
  22. What does ls do?
  23. -- ls displays the contents of the working directory.
  24.  
  25. What about cd and mkdir?
  26. -- cd - Allows the user to change directories within the file system.
  27. -- mkdir - Allows the user the ability to create a directory, or folder, within the file system.
  28.  
  29. What does hostname tell you, and what shows up in YOUR terminal when you type hostname?
  30.  
  31. 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:
  32. which ruby
  33. git --version
  34. rbenv --version
Add Comment
Please, Sign In to add comment