Skip to content

Instantly share code, notes, and snippets.

@mikepietruszka
Created November 12, 2024 22:27
Show Gist options
  • Save mikepietruszka/b65f6214de6438ef61901e78497d10d2 to your computer and use it in GitHub Desktop.
Save mikepietruszka/b65f6214de6438ef61901e78497d10d2 to your computer and use it in GitHub Desktop.
Show deprecated packages on FreeBSD 14.1
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