Last active
July 4, 2022 20:32
-
-
Save Masynchin/4f3938b4e953f0aa3e832a7d9005b01d to your computer and use it in GitHub Desktop.
Fetch all installed flake8 plugins
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
# Just names | |
pip list | awk '/^flake8/{print $1}' | |
# With version | |
pip list | awk '/^flake8/{print $1 "==" $2}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment