Browse Source

Added script to get installed packages

Samuel W. Flint 8 years ago
parent
commit
32610f4375
1 changed files with 5 additions and 0 deletions
  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/'