Skip to content

Instantly share code, notes, and snippets.

@lee-pai-long
Created January 20, 2016 09:34
Show Gist options
  • Save lee-pai-long/2c39f0b19d40e6be4cac to your computer and use it in GitHub Desktop.
Save lee-pai-long/2c39f0b19d40e6be4cac to your computer and use it in GitHub Desktop.

[LINUX MINT 17.2] Install exercism.io

$ wget -P /tmp/ \
> https://raw.githubusercontent.com/exercism/cli-www/master/public/install && \
> chmod +x /tmp/install && \
> sudo /tmp/install

Bash completion

$ mkdir -p ~/.config/exercism/ && \
> curl http://cli.exercism.io/exercism_completion.bash \
> > ~/.config/exercism/exercism_completion.bash

Add the following to ~/.bashrc

#Load exercism.io bash completion
if [ -f ~/.config/exercism/exercism_completion.bash ]; then
    . ~/.config/exercism/exercism_completion.bash
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment