CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 23 Jul 2025 22:46:19 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090210083308
location: https://web.archive.org/web/20090210083308/https://examples.oreilly.com/upt2/split/ascii
server-timing: captures_list;dur=0.594100, exclusion.robots;dur=0.021253, exclusion.robots.policy;dur=0.009947, esindex;dur=0.012618, cdx.remote;dur=18.459797, LoadShardBlock;dur=218.787320, PetaboxLoader3.datanode;dur=132.409889, PetaboxLoader3.resolve;dur=46.781668
x-app-server: wwwb-app225
x-ts: 302
x-tr: 261
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app225; 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, 23 Jul 2025 22:46:20 GMT
content-type: text/plain
content-length: 625
x-archive-orig-date: Tue, 10 Feb 2009 08:33:07 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "8ae92a-271-90194900"
x-archive-orig-accept-ranges: bytes
x-archive-orig-content-length: 625
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:33:08 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 26 Apr 2002 16:16:37 GMT", ; rel="prev memento"; datetime="Sun, 18 May 2008 20:29:17 GMT", ; rel="memento"; datetime="Tue, 10 Feb 2009 08:33:08 GMT", ; rel="next memento"; datetime="Wed, 30 Sep 2015 12:51:22 GMT", ; rel="last memento"; datetime="Fri, 25 Mar 2016 02:57:12 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_20090210083255_crawl100.arc.gz
server-timing: captures_list;dur=0.543723, exclusion.robots;dur=0.018679, exclusion.robots.policy;dur=0.008747, esindex;dur=0.012934, cdx.remote;dur=23.873810, LoadShardBlock;dur=180.519920, PetaboxLoader3.datanode;dur=169.594858, PetaboxLoader3.resolve;dur=130.340246, load_resource;dur=170.063730
x-app-server: wwwb-app225
x-ts: 200
x-tr: 396
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
#
# ascii - search for the octal value of a character.
# $file is a file containing an ASCII character chart with the octal and
# hexadecimal value of each ASCII character.
file=/usr/pub/ascii
# Make pattern with spaces to match field in $file exactly:
case "$1" in
[[\\/]) pat=" \\$1 " ;; # lets us search for [, \ and /
?) pat=" $1 " ;;
??) pat="$1 " ;;
???) pat="$1" ;;
*) echo "Usage: `basename $0` char
(char must be single character like 'a' or name like 'soh')." 1>&2
;;
esac
# Search for the octal representation of character(s) specified
sed -n "1,/^\$/s/.*|\([0-9][0-9][0-9]\) $pat|.*/\1/p" $file