Created
April 13, 2012 13:07
-
-
Save gshutler/2376749 to your computer and use it in GitHub Desktop.
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
var optionSet = new OptionSet | |
{ | |
{"p|password=", "The password for each certificate", x => password = x}, | |
{"f|format=", "The string format for certificate names", x => format = x} | |
}; | |
var outputPath = optionSet.Parse(args).FirstOrDefault(); | |
// Vessl e:\Export | |
// Vessl --password=foobar e:\Export | |
// Vessl --password=foobar --format=xml e:\Export | |
// Vessl -p foobar -f xml e:\Export |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment