Ubuntu Pastebin

Paste from Marco Ceppi at Thu, 8 Sep 2016 00:54:44 +0000

Download as text
1
2
3
4
5
6
7
juju() {
    if [[ $@ == "status" ]]; then
        command juju status --color | less -r
    else
        command juju "$@"
    fi
}
Download as text