Explorar el Código

Added script to get installed packages

Samuel W. Flint hace 8 años
padre
commit
32610f4375
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5 0
      getInstalled.sh

+ 5 - 0
getInstalled.sh

@@ -0,0 +1,5 @@
+#!/bin/zsh -f
+
+dnf list installed | \
+    awk '{ print $1 }' | \
+    sed 's/^\(.*\)\..*/\1/'