Created
April 10, 2012 13:46
-
-
Save major/2351495 to your computer and use it in GitHub Desktop.
Finding all available config flags for openstack nova
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
#!/bin/bash | |
git clone git://github.com/openstack/nova.git nova | |
cd nova | |
ack -ho "FLAGS\.[a-zA-Z\-_]+" | sed 's/^FLAGS\.//' | sort | uniq | |
# | |
# 489 config flags as of 2012-04-10 | |
# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment