1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
Description: Proper Perl shebang line for perl-written example scripts
Fixes lintian warning executable-not-elf-or-script.
Author: Axel Beckert <abe@debian.org>
@@ -1,4 +1,4 @@
-: # use perl -*- mode: perl; -*-
+#!/usr/bin/perl
###
# This program was written by and is copyright Alec Muffett 1991,
# 1992, 1993, 1994, 1995, and 1996, and is provided as part of the
@@ -1,4 +1,4 @@
-: # use perl -*- mode: perl; -*-
+#!/usr/bin/perl
###
# This program was written by and is copyright Alec Muffett 1991,
# 1992, 1993, 1994, 1995, and 1996, and is provided as part of the
|