I want to write a mini script that downloads all the recursive dependencies of an RPM package in Linux RedHat.
When I use:
repoquery -a --requires --recursive --resolve PACKAGE_NAME
I'm not getting all the recursive dependencies, but when I use:
repoquery -a --tree-requires PACKAGE_NAME
I'm getting all the dependencies but I'm not getting a usable list that I can pipeline into yumdownloader
.
What should I do?