]> the.earth.li Git - htag.git/blob - example-scripts/10fish
Change to debhelper compat level 10
[htag.git] / example-scripts / 10fish
1 #!/usr/bin/perl -w
2
3 # Copyright (C) 2001 Simon Huggins
4
5 # This program is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by the Free
7 # Software Foundation; either version 2 of the License, or (at your option)
8 # any later version.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13 # for more details.
14 #
15 # You should have received a copy of the GNU General Public License along
16 # with this program; if not, write to the Free Software Foundation, Inc., 59
17 # Temple Place, Suite 330, Boston, MA 02111-1307  USA
18
19
20 use strict;
21
22 open(OUT, ">$cfg{'tmptagfile'}")
23         or htagdie "$0: Could not open $cfg{'tmptagfile'}: $!\n";
24 reg_deletion("$cfg{'tmptagfile'}");
25 print OUT "Fish!";
26 close(OUT);