From 59c117dfc2ddd2bc6a1a94ce141940566ceb1888 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Tue, 31 Dec 2002 02:44:30 +0000 Subject: [PATCH] desymlink: Use File::Copy rather than a call to system(). Add more error checking. --- desymlink | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/desymlink b/desymlink index a1a40ee..f3cf416 100755 --- 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: $!"; } -- 2.30.2