Very simple script that installs homebrew:
#!/bin/bash ruby -e \"$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)\"
T
Reading the source of https://raw.github.com/Homebrew/homebrew/go/install -- it only prompts if stdin is a TTY. If you redirect stdin from /dev/null, it won't prompt at all. So:
/dev/null
ruby \ -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" \