Skip to content

Instantly share code, notes, and snippets.

@cjbischoff
Forked from NigoroJr/brew.sh
Created December 20, 2016 18:27
Show Gist options
  • Select an option

  • Save cjbischoff/ff699cfd55f9e70d2cc85dc93a40ee50 to your computer and use it in GitHub Desktop.

Select an option

Save cjbischoff/ff699cfd55f9e70d2cc85dc93a40ee50 to your computer and use it in GitHub Desktop.

Revisions

  1. @NigoroJr NigoroJr revised this gist Sep 25, 2015. 1 changed file with 19 additions and 19 deletions.
    38 changes: 19 additions & 19 deletions brew.sh
    Original file line number Diff line number Diff line change
    @@ -11,31 +11,31 @@ fi
    brew tap homebrew/dupes
    brew tap homebrew/versions

    brew install coreutils --default-names
    brew install binutils --default-names
    brew install diffutils --default-names
    brew install ed --default-names
    brew install findutils --default-names
    brew install gawk --default-names
    brew install gnu-indent --default-names
    brew install gnu-sed --default-names
    brew install gnu-tar --default-names
    brew install gnu-which --default-names
    brew install gnutls --default-names
    brew install grep --default-names
    brew install makedepend
    brew install tmux
    brew install coreutils --with-default-names
    brew install binutils --with-default-names
    brew install diffutils --with-default-names
    brew install findutils --with-default-names
    brew install gawk --with-default-names
    brew install gnu-indent --with-default-names
    brew install gnu-sed --with-default-names
    brew install gnu-tar --with-default-names
    brew install gnu-which --with-default-names
    brew install gnutls --with-default-names
    brew postinstall gnutls
    brew install grep --with-default-names
    brew install gzip
    brew install screen
    brew install grsync
    brew install watch
    brew install wdiff --with-gettext
    brew install wget

    brew install git
    brew install perl518
    brew install vim --override-system-vi
    brew install git
    brew install less
    brew install openssh --with-brewed-openssl
    brew install python3 --with-brewed-openssl
    # brew install rsync
    brew install unzip
    brew install vim --override-system-vi
    brew install macvim --override-system-vim --custom-system-icons --with-lua --with-python3
    brew install zsh
    #brew install macvim --override-system-vim --custom-system-icons --with-lua --with-python3
    brew install zsh
  2. Naoki created this gist May 23, 2014.
    41 changes: 41 additions & 0 deletions brew.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,41 @@
    #!/bin/sh

    if [ `which brew | grep 'brew$'` = "" ]; then
    ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
    fi

    if [ ! -e ~/.zshrc_local -o `grep '\$(brew --prefix coreutils)/libexec/gnubin' ~/.zshrc_local` = "" ]; then
    echo 'export PATH="$(brew --prefix coreutils)/libexec/gnubin:/usr/local/bin:$PATH"' >> ~/.zshrc_local
    fi

    brew tap homebrew/dupes
    brew tap homebrew/versions

    brew install coreutils --default-names
    brew install binutils --default-names
    brew install diffutils --default-names
    brew install ed --default-names
    brew install findutils --default-names
    brew install gawk --default-names
    brew install gnu-indent --default-names
    brew install gnu-sed --default-names
    brew install gnu-tar --default-names
    brew install gnu-which --default-names
    brew install gnutls --default-names
    brew install grep --default-names
    brew install gzip
    brew install screen
    brew install watch
    brew install wdiff --with-gettext
    brew install wget

    brew install git
    brew install perl518
    brew install less
    brew install openssh --with-brewed-openssl
    brew install python3 --with-brewed-openssl
    # brew install rsync
    brew install unzip
    brew install vim --override-system-vi
    brew install macvim --override-system-vim --custom-system-icons --with-lua --with-python3
    brew install zsh