CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 17 Jul 2025 15:57:50 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090210084633
location: https://web.archive.org/web/20090210084633/https://examples.oreilly.com/upt2/split/relink
server-timing: captures_list;dur=0.603639, exclusion.robots;dur=0.033866, exclusion.robots.policy;dur=0.022528, esindex;dur=0.014016, cdx.remote;dur=15.310061, LoadShardBlock;dur=255.337774, PetaboxLoader3.datanode;dur=123.985746, PetaboxLoader3.resolve;dur=70.258476
x-app-server: wwwb-app200
x-ts: 302
x-tr: 294
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app200; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Thu, 17 Jul 2025 15:57:51 GMT
content-type: text/plain
content-length: 384
x-archive-orig-date: Tue, 10 Feb 2009 08:46:33 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "b0a861-180-90194900"
x-archive-orig-accept-ranges: bytes
x-archive-orig-content-length: 384
x-archive-orig-connection: close
cache-control: max-age=1800
x-archive-guessed-content-type: text/plain
x-archive-guessed-charset: utf-8
memento-datetime: Tue, 10 Feb 2009 08:46:33 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 26 Apr 2002 16:13:40 GMT", ; rel="prev memento"; datetime="Wed, 18 Oct 2006 00:08:11 GMT", ; rel="memento"; datetime="Tue, 10 Feb 2009 08:46:33 GMT", ; rel="next memento"; datetime="Wed, 30 Sep 2015 16:39:17 GMT", ; rel="last memento"; datetime="Fri, 25 Mar 2016 03:20:33 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_8_20090210075601_crawl103-c/52_8_20090210084555_crawl100.arc.gz
server-timing: captures_list;dur=0.567618, exclusion.robots;dur=0.027033, exclusion.robots.policy;dur=0.014811, esindex;dur=0.011348, cdx.remote;dur=21.605929, LoadShardBlock;dur=395.369353, PetaboxLoader3.datanode;dur=211.670527, PetaboxLoader3.resolve;dur=499.138419, load_resource;dur=348.826318
x-app-server: wwwb-app200
x-ts: 200
x-tr: 795
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
accept-ranges: bytes
#!/usr/bin/perl
# Usage: relink perlexpr [symlinknames]
($op = shift) || die "Usage: relink perlexpr [filenames]\n";
if (!@ARGV) {
@ARGV = ;
chop(@ARGV);
}
for (@ARGV) {
$name = $_;
$_ = readlink($_);
next unless defined $_;
$was = $_;
eval $op;
die $@ if $@;
if ($was ne $_) {
unlink($name);
symlink($_, $name);
}
}