/genie-installer

Shell script that makes installing Genie a breeze

Primary LanguageShell

Genie Installer

Shell script that makes installing Genie a breeze.

Install

bash <(curl -fsSL https://zit.ec/genie)

Requirements

  • MacOS, Linux, Windows (WSL2)
  • Node.js (>= v18)

FAQ

Q: Why don't you use curl -fsSL https://zit.ec/genie | bash instead of bash <(curl -fsSL https://zit.ec/genie)?

A: The shell script uses the read command for reading user input. By piping the script, we will close the stdin and therefore we cannot read user input anymore. A workaround is to spawn a new bash process which will substitute the initial one. You can read more about it here.