Skip to content
Snippets Groups Projects
Select Git revision
  • 01b609dd5efbc6f4a41e36b1e826d62b5d0b0b67
  • master default protected
  • simple-task/7248-eol-check-add-node-22
  • 6877_check_iml_deployment
4 results

zz_template_check_xyz

Blame
  • pamac.sh 814 B
    #!/bin/bash
    # ===============================================================
    #
    # PACKAGE MANAGER: PAMAC
    # Manjaro
    #
    # included by ../check_packages2install
    #
    # ---------------------------------------------------------------
    # ah <axel.hahn@iml.unibe.ch>
    # 2022-06-03  v1.0  ah  first version
    # ===============================================================
    
    # ---------------------------------------------------------------
    # command to list of updates
    function pamacGetUpdates(){
        pamac checkupdates
    }
    
    # ---------------------------------------------------------------
    # extract list of packages 2 install
    # global  string  packagemanOut  output of update lister command
    function pamacPackages(){
         echo "$packagemanOut" | grep -- '->'
    }
    
    # ---------------------------------------------------------------