chiark / gitweb /
pull-mail: add --force option; extend running times
[bin.git] / desymlink
old mode 100644 (file)
new mode 100755 (executable)
index a1a40ee..f3cf416
--- a/desymlink
+++ b/desymlink
@@ -1,16 +1,17 @@
 #! /usr/bin/perl -w
 use strict;
+use File::Copy;
 
 for (@ARGV) {
     my $source = $_;
     next unless -l $source;
-    my $target = readlink $source or die "readlink: $!";
+    my $target = readlink $source or die "readlink $source: $!";
     my $trap = sub { unlink $source;
                     symlink $target, $source;
                     print "Caught a SIG$_[0]!\n";
                     exit; };
     local ($SIG{HUP}, $SIG{INT}, $SIG{TERM}, $SIG{QUIT}, $SIG{__DIE__}) =
        ($trap, $trap, $trap, $trap, $trap);
-    unlink $source;
-    system '/bin/cp', $target, $source;
+    unlink $source or die "unlink $source: $!";
+    copy $target, $source or die "copy $source to $target: $!";
 }