Skip to content

Instantly share code, notes, and snippets.

@pavelanni
Created July 22, 2020 16:10
Show Gist options
  • Save pavelanni/bc3aba097ffd30647125602f3cba5153 to your computer and use it in GitHub Desktop.
Save pavelanni/bc3aba097ffd30647125602f3cba5153 to your computer and use it in GitHub Desktop.
List packages in each RPM repo and store in files
for r in $(dnf repolist | egrep -v "^repo" | awk '{print $1}') ; do dnf repository-packages ${r} list > ${r}.txt ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment