Getting Started

Install script

To install or update picky, you can use the [install script][2] using cURL:

curl -o- https://raw.githubusercontent.com/pickyjs/picky/master/install.sh | bash

or Wget:

wget -qO- https://raw.githubusercontent.com/pickyjs/picky/master/install.sh | bash

The script clones the picky repository to ~/.picky and adds the source line to your profile (~/.bash_profile, ~/.zshrc or ~/.profile).

Auto completion

Picky has support for auto completion of aliases in bash/zsh. To install it you can simply run

$ picky --autocomplete

Or if you prefer installing it manually, you can run something like this:

For zsh

echo '. <(picky --completion)' >> .zshrc

For bash

picky --completion >> ~/picky.completion.sh
echo 'source ~/picky.completion.sh' >> .bash_profile