1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
Author: Ludovic Rousseau <rousseau@debian.org>
Description: Debian Policy ยง 10.4 states that Perl scripts should use
/usr/bin/perl directly and not /usr/bin/env
--- a/gscriptor
+++ b/gscriptor
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# gscriptor: GTK interface to send APDU commands to a smart card
# Copyright (C) 2001,2018 Lionel Victor, Ludovic Rousseau
--- a/ATR_analysis
+++ b/ATR_analysis
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# ATR_analysis
# Copyright (C) 2000-2023 Ludovic Rousseau, Christophe Levantis
--- a/scriptor
+++ b/scriptor
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# scriptor.pl: text interface to send APDU commands to a smart card
# Copyright (C) 2001 Lionel Victor
|