This file contains 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
#!/usr/bin/env python | |
from __future__ import print_function | |
import os | |
# Original PATH | |
original_path = os.environ['PATH'] | |
print('*'*80) | |
print('Your current PATH:') | |
print(original_path) |
This file contains 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
################################################################################ | |
# This file installs EDEN from the scratch on Windows. | |
# It assumes you have followed instructions from https://eden.esss.com.br/confluence/x/VYCS | |
# | |
# More info about Boxstarter can be found at: | |
# - https://www.simple-talk.com/dotnet/.net-framework/automate-the-complete-windows-environment-setup-and-configuration/ | |
# | |
# Some script examples can be seen at: | |
# - https://gist.github.com/lebsral/40e977f9036f820bc78e | |
# |
This file contains 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
""" | |
Simple Python2.7 script to delete jenkins jobs. | |
Requires: | |
- jenkinsapi | |
""" | |
from __future__ import unicode_literals | |
from jenkinsapi.jenkins import Jenkins | |
import requests |