Skip to content

Commit

Permalink
pmirror: fix shebang
Browse files Browse the repository at this point in the history
  • Loading branch information
donald committed Jun 20, 2016
1 parent 84ab698 commit edd465c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pmirror/pmirror
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/local/bin/perl -w
#! /usr/bin/perl

# https://github.molgen.mpg.de/mariux64/mxtools

Expand All @@ -8,6 +8,7 @@

package My::Escaper;
use strict;
use warnings;

our @ISA=qw(Exporter);
our @EXPORT=qw(fn_escape fn_unescape);
Expand All @@ -32,6 +33,7 @@ sub fn_unescape
#--------------------------------------------------------------
package My::FileInfo;
use strict;
use warnings;
import My::Escaper;

use Class::Struct (map {$_=>'$'} qw(name dev ino type perm nlink uid gid rdev size mtime target)) ;
Expand Down Expand Up @@ -151,6 +153,7 @@ sub lstat
#--------------------------------------------------------------
package main;
use strict;
use warnings;

use File::FnMatch ':fnmatch';
use File::Find;
Expand Down

0 comments on commit edd465c

Please sign in to comment.