CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 17 Jul 2025 12:30:41 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090210084755
location: https://web.archive.org/web/20090210084755/https://examples.oreilly.com/upt2/split/Clear
server-timing: captures_list;dur=0.706516, exclusion.robots;dur=0.027289, exclusion.robots.policy;dur=0.013252, esindex;dur=0.014582, cdx.remote;dur=6.676164, LoadShardBlock;dur=378.620791, PetaboxLoader3.datanode;dur=82.647565, PetaboxLoader3.resolve;dur=58.295500
x-app-server: wwwb-app204
x-ts: 302
x-tr: 412
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app204; 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 12:30:42 GMT
content-type: text/plain
content-length: 1146
x-archive-orig-date: Tue, 10 Feb 2009 08:47:55 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "8ae921-47a-90194900"
x-archive-orig-accept-ranges: bytes
x-archive-orig-content-length: 1146
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:55 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 18 Aug 2002 00:50:59 GMT", ; rel="prev memento"; datetime="Sun, 18 May 2008 20:28:37 GMT", ; rel="memento"; datetime="Tue, 10 Feb 2009 08:47:55 GMT", ; rel="next memento"; datetime="Wed, 30 Sep 2015 17:27:05 GMT", ; rel="last memento"; datetime="Fri, 25 Mar 2016 03:05:32 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_20090210084753_crawl100.arc.gz
server-timing: captures_list;dur=0.614818, exclusion.robots;dur=0.023804, exclusion.robots.policy;dur=0.011560, esindex;dur=0.012181, cdx.remote;dur=73.159906, LoadShardBlock;dur=268.740899, PetaboxLoader3.datanode;dur=128.698090, PetaboxLoader3.resolve;dur=447.187707, load_resource;dur=355.863367
x-app-server: wwwb-app204
x-ts: 200
x-tr: 723
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
#! /bin/sh
# SENDS VT102 AND COMPATIBLE TERMINAL CONTROL ESCAPE SEQUENCES
e="`echo e | tr e '\033'`" # Make an ESCape character portably
case "$0" in
*Clear) seq="${e}[;H${e}[2J" ;;# move to top left, clear screen
# ALTERNATE CHARACTER SETS. YOU USUALLY WANT "NOG" TO CLEAR THESE
# WHEN YOUR TERMINAL GETS IN THIS MODE ACCIDENTALLY:
*NOG) seq="${e}(B" ;; # cancel graphics
*Graphics) seq="${e}(0" ;; # lower-case letters become graphics
# NOTE: THESE WON'T WORK FOR FULL-SCREEN APPLICATIONS LIKE vi.
# BETTER TO RESET YOUR TERMINAL PARAMETERS (tset, stty):
*C132) seq="${e}[?3;h" ;; # 132-column mode
*C80) seq="${e}[?3;l" ;; # 80-column mode
*Revvid) seq="${e}[?5;h" ;; # Reverse video
*Normal) seq="${e}[?5;l" ;; # Normal video
# WRITE MESSAGE TO TERMINAL STATUS LINE (NICE FOR REMINDERS)
# EXAMPLE: ToStatus Clean out your files!
# AND CLEAR IT.
*ToStatus) seq="${e}7${e}[25;1f${e}[0K$*${e}8" ;;
*ClrStatus) seq="${e}7${e}[25;1f${e}[0K${e}8" ;;
*) echo "$0: HELP -- can't run myself." 1>&2; exit 1;;
esac
# SEND $seq TO TERMINAL WITHOUT INTERPRETATION BY SYSTEM V echo:
cat << END_OF_seq
$seq
END_OF_seq
exit 0