CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/Utilities/RelMon/scripts/relmon_authenticated_wget.py

Go to the documentation of this file.
00001 #! /usr/bin/env python
00002 ################################################################################
00003 # RelMon: a tool for automatic Release Comparison                              
00004 # https://twiki.cern.ch/twiki/bin/view/CMSPublic/RelMon
00005 #
00006 # $Author: dpiparo $
00007 # $Date: 2012/06/12 12:25:28 $
00008 # $Revision: 1.1 $
00009 #
00010 #                                                                              
00011 # Danilo Piparo CERN - danilo.piparo@cern.ch                                   
00012 #                                                                              
00013 ################################################################################
00014 
00015 from sys import argv,exit
00016 from utils import wget
00017 
00018 if __name__=="__main__":
00019   argc=len(argv)
00020   if argc!=2:
00021     print "Usage %prog url-to-fetch"
00022     exit(1)
00023   
00024   url=argv[1]
00025   wget(url)