Minor edits: list FSF, use $0 for scriptname.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4150 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2009-09-04 11:21:29 +00:00
parent 388891afbf
commit fcb805a6ec

View File

@ -1,6 +1,6 @@
#!/usr/bin/env perl
# Copyright: 2008-2009, Nick Treleaven
# License: GNU GPL V2 or later
# License: GNU GPL V2 or later, as published by the Free Software Foundation, USA.
# Warranty: NONE
# Searches a ChangeLog file for a line matching 'matchstring', then matches
@ -24,12 +24,11 @@
use strict;
use warnings;
my $scriptname = "changelist.pl";
my $argc = $#ARGV + 1;
($argc == 2) or die <<END;
Usage:
$scriptname matchstring changelogfile >outfile
$0 matchstring changelogfile >outfile
matchstring is not case sensitive.
END