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
#!/bin/bash | |
if [ $# -eq 0 ] | |
then | |
echo "Usage: $0 *.pem" | |
exit 1 | |
fi | |
for cert | |
do |
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
from __future__ import print_function | |
__author__ = 'Mohit Sharma' | |
import requests | |
from bs4 import BeautifulSoup as bs | |
import urllib2 | |
import os | |
_URL = 'http://serv.cusp.nyu.edu/files/cadence/' |
NewerOlder