0
我想創建一個自動腳本以用於安裝後。 因爲這個原因,我想使用釀造和木桶,使一切。 所以,我認爲我的腳本應該與開始安裝BREW:在Brew應用程序文件夾中使用Brew /木桶進行自動安裝
echo << "Installing homebrew..."
if test ! $(which brew); then
echo "Homebrew not found, Installing..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
然後我需要安裝一些有用的東西,因爲我在這裏看到:
http://lapwinglabs.com/blog/hacker-guide-to-setting-up-your-mac
所以我把這個過在我的腳本上:
# Install GNU core utilities (those that come with OS X are outdated)
brew install coreutils
# Install GNU `find`, `locate`, `updatedb`, and `xargs`, g-prefixed
brew install findutils
# Install Bash 4
brew install bash
# Install more recent versions of some OS X tools
brew tap homebrew/dupes
brew install homebrew/dupes/grep
$PATH=$(brew --prefix coreutils)/libexec/gnubin:$PATH
之後,鏈接上的指南說,安裝所有的應用程序桶和乾淨。 這是我的問題。 我希望安裝,並可以使用mac 的經典應用程序文件夾將來更新它們我該怎麼做?
也許我應該把這個行:
export HOMEBREW_CASK_OPTS="--appdir=/Applications --caskroom=/usr/local/Caskroom"
所有命令之前安裝的應用程序?它可以工作嗎? (我在這裏發現了這條線) 如果這條線是正確的,我可以使用brew/cask命令更新我的應用程序嗎?
對不起,我在dumbs問題,我剛剛發現啤酒,桶裝昨日:) 這個腳本任何建議或例子很好地接受:)
「剛剛發現了木桶」,通過任何隨機博客都沒有理由不讀取自述文件或運行'man brew-cask'。 https://github.com/caskroom/homebrew-cask/blob/master/USAGE.md。 – 4ae1e1
那麼,不完全是今天,但前幾天,無論如何,我的問題是關於腳本比caks本身:) –