Sha256: 9025caed7d2ed18cee05aeaefdabe205f8af9f5fd3d05b27f1ecc613835dccab
Contents?: true
Size: 511 Bytes
Versions: 14
Compression:
Stored size: 511 Bytes
Contents
#!/bin/bash echo 'emacs_install start 2-step' cd ~ echo '1-step: install homebrew?[Y/n]' read ANSWER case $ANSWER in "" | "Y" | "y" ) ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)";; * ) echo "install homebrew skip";; esac echo '2-step: update emacs?[Y/n]' read ANSWER case $ANSWER in "" | "Y" | "y" ) brew tap railwaycat/emacsmacport brew install emacs-mac --with-modern-icon;; * ) echo "update emacs skip";; esac echo 'emacs_install finish!!'
Version data entries
14 entries across 14 versions & 1 rubygems