Ubuntu Pastebin

Paste from zyga at Fri, 4 Aug 2017 14:29:59 +0000

Download as text
1
2
3
4
5
6
7
8
9
_complete_from_snap_maybe is a function
_complete_from_snap_maybe () 
{ 
    if [[ "$(which "$1")" =~ /snap/bin/ && ( -e /var/lib/snapd/snap/core/current/usr/lib/snapd/etelpmoc.sh || -e /snap/core/current/usr/lib/snapd/etelpmoc.sh ) ]]; then
        _complete_from_snap "$1";
        return $?;
    fi;
    _completion_loader "$1"
}
Download as text