![]() |
|
|||
File indexing completed on 2021-07-13 03:16:14
0001 #! /usr/bin/env python3 0002 ################################################################################ 0003 # RelMon: a tool for automatic Release Comparison 0004 # https://twiki.cern.ch/twiki/bin/view/CMSPublic/RelMon 0005 # 0006 # 0007 # 0008 # Danilo Piparo CERN - danilo.piparo@cern.ch 0009 # 0010 ################################################################################ 0011 0012 from __future__ import print_function 0013 from sys import argv,exit 0014 from utils import wget 0015 0016 if __name__=="__main__": 0017 argc=len(argv) 0018 if argc!=2: 0019 print("Usage %prog url-to-fetch") 0020 exit(1) 0021 0022 url=argv[1] 0023 wget(url)
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |
![]() ![]() |