aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/%HOME%/.bash_utils/os.sh
blob: 640c693001804ee9f4871fa92299c755fcf0d1ef (plain) (tree)






























                                                         











                                         

                                         
 
                                                                  
 





                                                     



                                                     
                                              

 








                                               

                                         
 
                                      
 




                                                               
 







                                                  






                                         



                          
      
 
#!/usr/bin/env bash

_os=''

detect_os() {
    command -v uname > /dev/null           \
        && [ "$( uname -o )" == 'Cygwin' ] \
        && _os='Cygwin'                    \
        && return 0

    [ -r /etc/os-release ]                              \
        && _os="$( . /etc/os-release && echo "$NAME" )" \
        && return 0

    return 1
}

detect_os

os_detected() {
    test -n "$_os"
}

is_cygwin() {
    test "$_os" == 'Cygwin'
}

is_ubuntu() {
    test "$_os" == 'Ubuntu'
}

is_arch() {
    test "$_os" == 'Arch Linux'
}

list_packages_cygwin() (
    set -o errexit -o nounset -o pipefail

    cygcheck --check-setup --dump-only \
        | tail -n +3                   \
        | cut -d ' ' -f 1
)

list_initial_packages_ubuntu() (
    set -o errexit -o nounset -o pipefail

    local -r initial_status='/var/log/installer/initial-status.gz'

    gzip --decompress --stdout -- "$initial_status" \
        | sed --quiet -- 's/^Package: //p' \
        | sort \
        | uniq
)

list_manually_installed_packages_ubuntu() (
    set -o errexit -o nounset -o pipefail

    comm -23 <( apt-mark showmanual | sort | uniq ) \
             <( list_initial_packages_ubuntu )
)

list_packages_ubuntu() (
    set -o errexit -o nounset -o pipefail

    dpkg --get-selections                     \
        | grep --invert-match -- 'deinstall$' \
        | cut -f 1                            \
        | cut -d ':' -f 1
)

list_initial_packages_arch() (
    set -o errexit -o nounset -o pipefail

    local -ra groups=(base base-devel)

    pacman -Q --groups -q -- ${groups[@]+"${groups[@]}"} | sort
)

list_manually_installed_packages_arch() (
    set -o errexit -o nounset -o pipefail

    comm -23 <( pacman -Q --explicit -q | sort ) \
             <( list_initial_packages_arch )
)

list_packages_arch() {
    pacman -Qq
}

list_packages() (
    set -o errexit -o nounset -o pipefail

    if is_cygwin; then
        list_packages_cygwin
    elif is_ubuntu; then
        list_packages_ubuntu
    elif is_arch; then
        list_packages_arch
    else
        return 1
    fi
)