Skip to content
Snippets Groups Projects
Select Git revision
  • 944b47efb68903b39778e1d09f65134cd22c7327
  • master default protected
  • 7771-harden-postgres-backup
  • pgsql-dump-with-snapshots
  • update-colors
  • update-docs-css
  • usb-repair-stick
  • desktop-notification
  • 7000-corrections
  • db-detector
10 results

jobhelper.sh

Blame
  • pamac.sh 863 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
    # 2022-06-07  v1.1  ah  rename functions
    # ===============================================================
    
    # ---------------------------------------------------------------
    # command to list of updates
    function pamac.getUpdates(){
        pamac checkupdates
    }
    
    # ---------------------------------------------------------------
    # extract list of packages 2 install
    # global  string  packagemanOut  output of update lister command
    function pamac.getPackageList(){
         echo "$packagemanOut" | grep -- '->'
    }
    
    # ---------------------------------------------------------------