📄 relink
字号:
#!/usr/bin/perl'di';'ig00';## $Header: relink,v 4.0 91/03/20 01:11:40 lwall Locked $## $Log: relink,v $# Revision 4.0 91/03/20 01:11:40 lwall# 4.0 baseline.# # Revision 3.0.1.2 90/08/09 03:17:44 lwall# patch19: added man page for relink and rename# ($op = shift) || die "Usage: relink perlexpr [filenames]\n";if (!@ARGV) { @ARGV = <STDIN>; 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';<<'.ex'; #__END__ ############# From here on it's a standard manual page ############.TH RELINK 1 "July 30, 1990".AT 3.SH LINKrelink \- relinks multiple symbolic links.SH SYNOPSIS.B relink perlexpr [symlinknames].SH DESCRIPTION.I Relinkrelinks the symbolic links given according to the rule specified as thefirst 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 expressionwill 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 readvia standard input..PPFor example, to relink all symbolic links in the current directorypointing to somewhere in X11R3 so that they point to X11R4, you might say.nf relink 's/X11R3/X11R4/' *.fiTo 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 ENVIRONMENTNo environment variables are used..SH FILES.SH AUTHORLarry Wall.SH "SEE ALSO"ln(1).brperl(1).SH DIAGNOSTICSIf you give an invalid Perl expression you'll get a syntax error..SH BUGS.ex
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -