From b1a96f58b6e3868ac840cd72629ad29714dd4cc7 Mon Sep 17 00:00:00 2001 From: Christian Krause Date: Thu, 2 Jul 2015 15:23:40 +0200 Subject: [PATCH] use more portable /usr/bin/env perl for scripts This is useful, e.g. if your perl is not installed in `/usr/bin` or you want to give a specific perl precendence over the one installed in `/usr/bin`. The `-w` is not needed since there is also `use warnings;` in these scripts. --- qualfa2fq.pl | 2 +- xa2multi.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qualfa2fq.pl b/qualfa2fq.pl index 31e1974..2fcb280 100755 --- a/qualfa2fq.pl +++ b/qualfa2fq.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl use strict; use warnings; diff --git a/xa2multi.pl b/xa2multi.pl index 2409c29..fff50fd 100755 --- a/xa2multi.pl +++ b/xa2multi.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl use strict; use warnings;