From 68be1fe204732b137b5a776b3c4e44876006ac94 Mon Sep 17 00:00:00 2001 From: ryuslash Date: Tue, 9 Feb 2010 02:45:56 +0100 Subject: Added license info and README --- 4grab.py | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) (limited to '4grab.py') diff --git a/4grab.py b/4grab.py index 7863854..adb47ca 100755 --- a/4grab.py +++ b/4grab.py @@ -1,4 +1,24 @@ #!/bin/env python + +###################################################################### +# Copyright 2009, 2010 ryuslash +# +# This file is part of 4grab. +# +# 4grab is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# 4grab is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with 4grab. If not, see . +###################################################################### + import optparse import sys @@ -7,7 +27,14 @@ import download parser = optparse.OptionParser() -parser.add_option("-e", nargs=2, dest="confval", metavar="VALUE") +parser.set_usage( +"""%prog [options] + +4grab Copyright (C) 2009-2010 ryuslash +This program comes with ABSOLUTELY NO WARRANTY. +This is free software, and you are welcome to redistribute it +under certain conditions.""") +parser.add_option("-e", nargs=2, dest="confval", metavar="CONF VALUE", help="Set configuration option CONF to be VALUE") (options, args) = parser.parse_args() -- cgit v1.2.3-54-g00ecf