yay v9.4.6 - libalpm v12.0.1
It'd be great if yay had the possibility to not just download the PKGBUILD to the cwd, but also to just display it to stdout. Often i want to look at how a package is built and find myself looking it up in the browser because i don't want to have the pkgbuild file saved, but just shown.
Technically this does what you want but I would be careful where you run it :smile: .
yay -G ${PKGBUILD} && less ${PKGBUILD}/PKGBUILD && rm -rfv ${PKGBUILD}
I'm willing to implement this as a -P option.
Most helpful comment
Technically this does what you want but I would be careful where you run it :smile: .
I'm willing to implement this as a
-Poption.