Download Single File from GitHub on Mac
• Select the file you wish to download.
• 
• Right-click and select “Save Page As…”
• 
• Browse to where you’d like to save the file, replace the file extension with desired file type and select “Save.”
• 
• The file will save to your desired location.
• 
Run Bash Script in Terminal on Mac
• Right-click on the directory containing the Bash script you wish to run, Expand Services” menu and select “New Terminal at Folder.”
• 
• Type chmod +x < Bash script >.sh and press return key to give the script executable permission.
• 
• Type ./< Bash script >.sh and press return key to run the Bash script.
• 
Run Python Script in Terminal on Mac
• Right-click on the directory containing the Bash script you wish to run, Expand Services” menu and select “New Terminal at Folder.”
• 
• Type python3 < Python script >.py and press return key to run the Python script.
• 
Run PowerShell Script in Terminal on Mac
• Right-click on the directory containing the PowerShell script you wish to run, Expand Services” menu and select “New Terminal at Folder.”
• 
• Type pwsh < PowerShell script >.ps1 and press return key to run the PowerShell script
• 

