autils

Unnamed repository; edit this file 'description' to name the repository.
git clone https://codeberg.org/emmett1/autils
Log | Files | Refs | README | LICENSE

apkg-foreign (167B)


      1 #!/bin/sh
      2 #
      3 # script to print foreign pkg
      4 # (package installed but not in repos)
      5 
      6 for i in $(spm -a | awk '{print $1}'); do
      7 	[ $(apkg -p $i) ] || echo $i
      8 done
      9 
     10 exit 0