Last active
August 29, 2015 14:23
-
-
Save guyhughes/e71ad5785e0867b773ad to your computer and use it in GitHub Desktop.
apt-list-unstable
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
| aptitude versions '~i' | grep -B1 -P '\W(?!(stable|testing))\Wunstable' | awk '{print $2}' | grep -E ':$' | sed 's/://' |
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
| aptitude versions '~i' | grep -B1 unstable | awk '{print $2}' | egrep ':$' | sed 's/://' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment