Bash comands: Udacity intro to shell commands
I am using the command line daily now as a dev. Before starting as a dev I was a fulltime Windows user, because games, that's why. Since april I've been using MacOs and the terminal daily. Though I don't feel as expressive in the terminal as I feel in my IDE. So it's time to become more proficient. Deliberate practice! I found a basic course at Udemy to strengthen some fundamentals: https://classroom.udacity.com/courses/ud595/ [Lesson 1] Terminal emulator: nothing more than a data entry point BashShell: interpreter of terminal commands BashShell is a command line interface, like the python or ruby interpreter or js console date > prints date and time expr 2 + 2 > evaluates the expression 2 + 2 echo You rock > prints you rock uname > prints the unix flavour, for me "Darwin" hostname > prints hostname of current machine host cd udacity.com > prints info on the host bash --version > shows bash version history > shows b...