Article 4619 of comp.lang.perl: Xref: feenix.metronet.com comp.lang.perl:4619 Newsgroups: comp.lang.perl Path: feenix.metronet.com!news.ecn.bgu.edu!usenet.ins.cwru.edu!howland.reston.ans.net!math.ohio-state.edu!cs.utexas.edu!swrinde!network.ucsd.edu!news.cerf.net!netlabs!lwall From: lwall@netlabs.com (Larry Wall) Subject: Re: moving files Message-ID: <1993Jul28.184028.23625@netlabs.com> Sender: news@netlabs.com Nntp-Posting-Host: scalpel.netlabs.com Organization: NetLabs, Inc. References: <9830014@hpfcso.FC.HP.COM> Date: Wed, 28 Jul 1993 18:40:28 GMT Lines: 97 In article <9830014@hpfcso.FC.HP.COM> smf@hpfcso.FC.HP.COM (Steve Flanagan) writes: : Hello, : : I want to mv a symbolic link from one name to another. (It probably : does not matter) This link points to a file on another device. : rename() complain that the file being rename is a Cross-device link. : : mv exactly what I want, but I perfer to know the perl-way of doing it. Here's the relink program. #!/usr/bin/perl 'di'; 'ig00'; # # $Header: relink,v 1.2 90/08/12 00:21:14 lwall Locked $ # # $Log: relink,v $ # Revision 1.2 90/08/12 00:21:14 lwall # Manual standardization. # ($op = shift) || die "Usage: relink perlexpr [filenames]\n"; if (!@ARGV) { @ARGV = ; chop(@ARGV); } for (@ARGV) { next unless -l; # symbolic link? $name = $_; $_ = readlink($_); $was = $_; eval $op; die $@ if $@; if ($was ne $_) { unlink($name); symlink($_, $name); } } ############################################################################## # These next few lines are legal in both Perl and nroff. .00; # finish .ig 'di \" finish diversion--previous line must be blank .nr nl 0-1 \" fake up transition to first page again .nr % 0 \" start at page 1 '; __END__ ############# From here on it's a standard manual page ############ .TH RELINK 1 "July 30, 1990" .AT 3 .SH LINK relink \- relinks multiple symbolic links .SH SYNOPSIS .B relink perlexpr [symlinknames] .SH DESCRIPTION .I Relink relinks the symbolic links given according to the rule specified as the first argument. The argument is a Perl expression which is expected to modify the $_ string in Perl for at least some of the names specified. For each symbolic link named on the command line, the Perl expression will be executed on the contents of the symbolic link with that name. If a given symbolic link's contents is not modified by the expression, it will not be changed. If a name given on the command line is not a symbolic link, it will be ignored. If no names are given on the command line, names will be read via standard input. .PP For example, to relink all symbolic links in the current directory pointing to somewhere in X11R3 so that they point to X11R4, you might say .nf relink 's/X11R3/X11R4/' * .fi To change all occurences of links in the system from /usr/spool to /var/spool, you'd say .nf find / -type l -print | relink 's#/usr/spool#/var/spool#' .fi .SH ENVIRONMENT No environment variables are used. .SH FILES None. .SH AUTHOR Larry Wall .SH "SEE ALSO" ln(1) .br perl(1) .SH DIAGNOSTICS If you give an invalid Perl expression you'll get a syntax error. .SH BUGS .ex