Skip to content

Commit

Permalink
use more portable /usr/bin/env perl for scripts
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
wookietreiber committed Jul 2, 2015
1 parent eb428d7 commit b1a96f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qualfa2fq.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/perl -w
#!/usr/bin/env perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion xa2multi.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/perl -w
#!/usr/bin/env perl

use strict;
use warnings;
Expand Down

0 comments on commit b1a96f5

Please sign in to comment.