Created
November 12, 2024 22:27
-
-
Save mikepietruszka/b65f6214de6438ef61901e78497d10d2 to your computer and use it in GitHub Desktop.
Show deprecated packages on FreeBSD 14.1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for package in $(pkg info | awk '{print $1}'); do | |
if pkg info "${package}" | grep -qi "DEPRECATED"; then | |
echo "${package} is deprecated" | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment