CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 06 Aug 2025 09:15:13 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20080518204531
location: https://web.archive.org/web/20080518204531/https://examples.oreilly.com/upt2/split/make_print
server-timing: captures_list;dur=4.810654, exclusion.robots;dur=0.016788, exclusion.robots.policy;dur=0.007531, esindex;dur=0.009820, cdx.remote;dur=18.740442, LoadShardBlock;dur=283.211324, PetaboxLoader3.datanode;dur=141.044000, PetaboxLoader3.resolve;dur=139.853220
x-app-server: wwwb-app218
x-ts: 302
x-tr: 328
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app218; 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, 06 Aug 2025 09:15:13 GMT
content-type: text/plain
content-length: 498
x-archive-orig-date: Sun, 18 May 2008 20:45:29 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "54c3da-1f2-90194900"
x-archive-orig-accept-ranges: bytes
x-archive-orig-content-length: 498
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: Sun, 18 May 2008 20:45:31 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 19 Jun 2002 01:46:51 GMT", ; rel="prev memento"; datetime="Tue, 16 Oct 2007 16:15:53 GMT", ; rel="memento"; datetime="Sun, 18 May 2008 20:45:31 GMT", ; rel="next memento"; datetime="Tue, 10 Feb 2009 09:05:39 GMT", ; rel="last memento"; datetime="Fri, 25 Mar 2016 03:26:57 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_3_20080518193113_crawl107-c/52_3_20080518204508_crawl100.arc.gz
server-timing: captures_list;dur=0.724155, exclusion.robots;dur=0.032865, exclusion.robots.policy;dur=0.014482, esindex;dur=0.014501, cdx.remote;dur=10.709282, LoadShardBlock;dur=139.033152, PetaboxLoader3.datanode;dur=203.717725, load_resource;dur=215.356985, PetaboxLoader3.resolve;dur=74.436601
x-app-server: wwwb-app218
x-ts: 200
x-tr: 393
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
# This is a makefile that lets you be sure you have printouts of the
# latest versions of certain files.
# Replace 'xyz' with the name of your printer
LPR = lpr -Pxyz
# Replace these filenames with names of files you want to print
FILES = preface chap1 chap2 chap3 chap4 chap5 appendix
# The lines 'pr ...' and 'touch ...' MUST start with a TAB character.
print: $(FILES)
pr $? | $(LPR)
touch print
# Print all the files, regardless of when they were modified
printall:
pr $(FILES) | $(LPR)