This repository contains a collection of useful scripts mostly intended for automation.
It's intended to be used directly from GitHub using curl.
For example:
curl --silent https://raw.githubusercontent.com/BennyHoward/scripts/master/helloworld.sh | sh
# => Hello World!
or
# For PowerShell in Mac or Linux
curl --silent https://raw.githubusercontent.com/BennyHoward/scripts/master/helloworld.ps1 | pwsh
# => Hello World!
or
# For PowerShell in Windows
Invoke-RestMethod https://raw.githubusercontent.com/BennyHoward/scripts/master/helloworld.ps1 | PowerShell.exe
# => Hello World!
curl --silent https://raw.githubusercontent.com/BennyHoward/scripts/master/generate-generic-boilerplate.sh | sh