CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 08 Aug 2025 18:52:41 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090210094514
location: https://web.archive.org/web/20090210094514/https://examples.oreilly.com/upt2/split/redo
server-timing: captures_list;dur=0.717210, exclusion.robots;dur=0.027584, exclusion.robots.policy;dur=0.011938, esindex;dur=0.012103, cdx.remote;dur=42.024150, LoadShardBlock;dur=210.874971, PetaboxLoader3.datanode;dur=66.321105, PetaboxLoader3.resolve;dur=93.662780
x-app-server: wwwb-app211
x-ts: 302
x-tr: 283
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app211; 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: Fri, 08 Aug 2025 18:52:42 GMT
content-type: text/plain
content-length: 1443
x-archive-orig-date: Tue, 10 Feb 2009 09:45:14 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "b0a860-5a3-90194900"
x-archive-orig-accept-ranges: bytes
x-archive-orig-content-length: 1443
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 09:45:14 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sat, 25 May 2002 07:27:38 GMT", ; rel="prev memento"; datetime="Wed, 18 Oct 2006 00:12:51 GMT", ; rel="memento"; datetime="Tue, 10 Feb 2009 09:45:14 GMT", ; rel="next memento"; datetime="Wed, 30 Sep 2015 19:16:21 GMT", ; rel="last memento"; datetime="Fri, 25 Mar 2016 03:20:28 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_20090210094437_crawl100.arc.gz
server-timing: captures_list;dur=0.633301, exclusion.robots;dur=0.021111, exclusion.robots.policy;dur=0.010097, esindex;dur=0.012549, cdx.remote;dur=30.874319, LoadShardBlock;dur=65.948496, PetaboxLoader3.datanode;dur=126.585601, load_resource;dur=208.368680, PetaboxLoader3.resolve;dur=102.164211
x-app-server: wwwb-app211
x-ts: 200
x-tr: 340
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
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
# (The name of the author of the script below, which apparently was obtained
# from Usenet years ago, has been lost.)
#
# This script gives csh users the capability of command line editing by
# invoking the open mode of ex on a file containing a history list, and then
# sourcing the edited version of the desired command.
#
# 1) install it in /usr/local/bin/redo (or wherever else you'd like) with
# read-only-for-world permissions (i.e., do *not* make it executable);
#
# 2) do
# alias r source /usr/local/bin/redo
# (or whatever, corresponding to where you installed it), and also put this
# alias in your favorite "dot" file;
#
# 3) type "r" to invoke it; use the "hjkl" keys to get to the line you want to
# edit; edit the line (remember that you're in the open mode of ex); and,
# when you're done, hit (*not* ZZ).
#
# Get up to 22 most recent commands.
history -h 22 >! /tmp/redo.$$
# Put CR in $c[1] and ESC in $c[2]:
set c=(`echo "m e" | tr me '\015\033'`)
# Make CR map to :wq! and start ex quietly at 2nd to last line in open mode.
(setenv EXINIT "map $c[1] :.wq\!$c[2]|map! $c[1] ${c[2]}:.wq\!$c[2]";\
ex '+$-1 open' /tmp/redo.$$)
tail -1 /tmp/redo.$$ >! /tmp/cmd.$$
# Insert into history without executing.
source -h /tmp/cmd.$$
# Clear out temporaries.
/bin/rm -f /tmp/{cmd,redo}.$$
unset c
# If thing chosen to redo is the redo alias itself then DON'T redo it.
if (!-2:0 != !!:0) !!