Skip to content

Latest commit

 

History

History
24 lines (23 loc) · 560 Bytes

BashBasics.md

File metadata and controls

24 lines (23 loc) · 560 Bytes

Intro

  • Firstly, there are no types in Bash
HELLOWORLD=Hello World

Environment Variables

HOME=/users/ZachLeach
  • The Home Directory is now ZachLeach
  • Typing in cd will take you to ZachLeach instead of whatever you had previously
HOME=/
  • Home Directory is now root directory
PS1=">"
  • Instead of % like how MacOS will often use for command prompting, you will be greeted with >
PS2="secondaryPrompt: "
  • PS2 basically happens when you have to be prompted twice for the same process