Basic input masks use symbols to create the mask.
9: Numerica: AlphabeticalA: Alphabetical (forces uppercase)*: Alphanumeric&: Alphanumeric (forces uppercase)
| #!/usr/bin/python | |
| import sys | |
| import zipfile | |
| import urllib | |
| def download_plugin(name,version): | |
| pluginUrl = "http://updates.jenkins-ci.org/download/plugins/%s/%s/%s.hpi" % (name,version,name) | |
| print "downloading: %s" % pluginUrl | |
| file = "%s.hpi" % name |
| #!/bin/sh | |
| # add a simple 'nuget' command to Mac OS X under Mono | |
| # get NuGet.exe binary from http://nuget.codeplex.com/releases/view/58939 | |
| # get Microsoft.Build.dll from a Windows .NET 4.0 installation | |
| # copy to /usr/local/bin and Robert is your father's brother.... | |
| # | |
| PATH=/usr/local/bin:$PATH | |
| mono --runtime=v4.0 /usr/local/bin/NuGet.exe $* |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/