Difference between revisions of "Bash completion"

From OpenZFS on OS X
Jump to: navigation, search
(Created page with "Assuming you already have [http://brew.sh/ Homebrew] installed brew install bash-completion Add the following lines to your ~/.bash_profile: if [ -f $(brew --prefix)/etc/bas...")
(No difference)

Revision as of 13:26, 7 August 2014

Assuming you already have Homebrew installed

brew install bash-completion

Add the following lines to your ~/.bash_profile:

if [ -f $(brew --prefix)/etc/bash_completion ]; then
        . $(brew --prefix)/etc/bash_completion
fi

Install the ZFS bash completions:

cd /usr/local/etc/bash_completion.d
curl -O https://raw.githubusercontent.com/zfsonlinux/zfs/master/contrib/bash_completion.d/zfs

Open a new terminal window.