CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 17 Jul 2025 19:49:32 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20080518202837
location: https://web.archive.org/web/20080518202837/https://examples.oreilly.com/upt2/split/Clear
server-timing: captures_list;dur=0.991807, exclusion.robots;dur=0.030977, exclusion.robots.policy;dur=0.014033, esindex;dur=0.017304, cdx.remote;dur=86.132382, LoadShardBlock;dur=407.647933, PetaboxLoader3.datanode;dur=71.286994, PetaboxLoader3.resolve;dur=124.817918
x-app-server: wwwb-app212
x-ts: 302
x-tr: 523
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app212; 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 19:49:33 GMT
content-type: text/plain
content-length: 1146
x-archive-orig-date: Sun, 18 May 2008 20:28:35 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "54c3d6-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: Sun, 18 May 2008 20:28:37 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="Tue, 16 Oct 2007 16:10:57 GMT", ; rel="memento"; datetime="Sun, 18 May 2008 20:28:37 GMT", ; rel="next memento"; datetime="Tue, 10 Feb 2009 08:47:55 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_3_20080518193113_crawl107-c/52_3_20080518202837_crawl100.arc.gz
server-timing: captures_list;dur=0.979704, exclusion.robots;dur=0.033693, exclusion.robots.policy;dur=0.014968, esindex;dur=0.019134, cdx.remote;dur=28.537726, LoadShardBlock;dur=55.265216, PetaboxLoader3.datanode;dur=233.259381, load_resource;dur=538.608380, PetaboxLoader3.resolve;dur=349.364075
x-app-server: wwwb-app212
x-ts: 200
x-tr: 656
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
# 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