CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 16 Jul 2025 17:04:23 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090210084701
location: https://web.archive.org/web/20090210084701/https://examples.oreilly.com/upt2/split/zmore
server-timing: captures_list;dur=0.717759, exclusion.robots;dur=0.025086, exclusion.robots.policy;dur=0.011554, esindex;dur=0.013962, cdx.remote;dur=22.702251, LoadShardBlock;dur=246.563487, PetaboxLoader3.datanode;dur=115.994906
x-app-server: wwwb-app222
x-ts: 302
x-tr: 292
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app222; 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: Wed, 16 Jul 2025 17:04:23 GMT
content-type: text/plain
content-length: 1214
x-archive-orig-date: Tue, 10 Feb 2009 08:47:01 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "43693d-4be-90194900"
x-archive-orig-accept-ranges: bytes
x-archive-orig-content-length: 1214
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:47:01 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 19 Jun 2002 01:43:35 GMT", ; rel="prev memento"; datetime="Sun, 18 May 2008 20:49:12 GMT", ; rel="memento"; datetime="Tue, 10 Feb 2009 08:47:01 GMT", ; rel="next memento"; datetime="Wed, 30 Sep 2015 13:08:59 GMT", ; rel="last memento"; datetime="Fri, 25 Mar 2016 03:08:15 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_20090210084700_crawl100.arc.gz
server-timing: captures_list;dur=0.521882, exclusion.robots;dur=0.018952, exclusion.robots.policy;dur=0.008592, esindex;dur=0.012832, cdx.remote;dur=7.629672, LoadShardBlock;dur=67.449052, PetaboxLoader3.datanode;dur=99.953091, load_resource;dur=158.609930, PetaboxLoader3.resolve;dur=74.296881
x-app-server: wwwb-app222
x-ts: 200
x-tr: 255
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
#! /bin/sh
### zless, zmore, zpg - "zcat | less", "zcat | more" or "zcat | pg" on file(s)
### vless, vmore, vpg - same, except "cat -t -v -e" instead of "zcat"
### rcsless, rcsmore, rcspg - same, except for RCS files: uses "co -p"
### Usage: *{more,pg,less} [-options for pager] file [...files]
myname="`basename $0`"
# UNCOMMENT THE RIGHT LINE FOR YOUR UNIX:
# echo="echo -n" nnl= # BSD
# echo=echo nnl="\c" # SYSV
echo="echo -n" nnl= PATH=/usr/bin:$PATH; export PATH # SunOS
case "$myname" in
vless|vmore|vpg) cat="/bin/cat -t -v -e" ;;
zless|zmore|zpg) cat=/usr/local/bin/gzcat ;;
rcsless|rcsmore|rcspg) cat="/usr/local/bin/co -p -q" ;;
*) echo "$0: quitting: I don't know how to run myself!" 1>&2; exit 1 ;;
esac
case "$myname" in
*less) prog=/usr/local/bin/less ;;
*more) prog=/usr/ucb/more ;;
*pg) prog=/usr/5bin/pg ;;
esac
# PUT LEADING OPTIONS (UP TO FIRST FILENAME) IN $opts AND shift THEM AWAY:
while :
do
case "$1" in
-*) opts="$opts $1"; shift ;;
*) break ;;
esac
done
while :
do
case "$1" in
"") break ;;
*) $cat "$1" | $prog $opts ;;
esac
# IF MORE FILES, WAIT:
case "$2" in
?*) $echo "$myname: Press RETURN to see next file, '$2': $nnl"
read dummy
;;
esac
shift
done