Skip to content
Snippets Groups Projects
Select Git revision
  • e99ee9945e005a58f83cecf1f19933e1504b3266
  • master default protected
  • Legacy_Php7
3 results

act_build.php

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 -- '->'
    }
    
    # ---------------------------------------------------------------