CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 16 Jul 2025 05:37:32 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090210094454
location: https://web.archive.org/web/20090210094454/https://examples.oreilly.com/upt2/split/phone
server-timing: captures_list;dur=1.567159, exclusion.robots;dur=0.073506, exclusion.robots.policy;dur=0.034586, esindex;dur=0.023643, cdx.remote;dur=31.187363, LoadShardBlock;dur=179.946784, PetaboxLoader3.datanode;dur=144.794352
x-app-server: wwwb-app221
x-ts: 302
x-tr: 242
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app221; 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 05:37:33 GMT
content-type: text/plain
content-length: 1059
x-archive-orig-date: Tue, 10 Feb 2009 09:44:54 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "6b1ec9-423-90194900"
x-archive-orig-accept-ranges: bytes
x-archive-orig-content-length: 1059
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 09:44:54 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 26 Apr 2002 16:25:21 GMT", ; rel="prev memento"; datetime="Sun, 18 May 2008 20:32:43 GMT", ; rel="memento"; datetime="Tue, 10 Feb 2009 09:44:54 GMT", ; rel="next memento"; datetime="Wed, 30 Sep 2015 13:01:29 GMT", ; rel="last memento"; datetime="Fri, 25 Mar 2016 03:07: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_20090210094437_crawl100.arc.gz
server-timing: captures_list;dur=0.497140, exclusion.robots;dur=0.017939, exclusion.robots.policy;dur=0.008622, esindex;dur=0.011599, cdx.remote;dur=23.230199, LoadShardBlock;dur=91.467146, PetaboxLoader3.datanode;dur=122.636033, load_resource;dur=237.952793, PetaboxLoader3.resolve;dur=155.102231
x-app-server: wwwb-app221
x-ts: 200
x-tr: 377
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
#
# phone, address - look a phone or address in a file.
# LINK BOTH THE phone AND address SCRIPTS TOGETHER; BOTH USE THIS FILE!
myname="`basename $0`" # NAME OF THIS SCRIPT (USUALLY address OR phone)
case "$myname" in
phone|address)
sysfile=/work/ora/$myname # SYSTEM FILE
persfile=${HOME?}/$myname # PERSONAL FILE
;;
*) echo "$0: HELP! I don't know how to run myself." 1>&2; exit 1 ;;
esac
if test ! -f $persfile
then touch $persfile
fi
case $# in
0) echo "Usage: $myname searchfor [...searchfor]
(You didn't tell me what you want to search for.)" 1>&2
exit 1
;;
*) # BUILD egrep EXPRESSION LIKE (arg1|arg2|...) FROM NAME(S) USER TYPES:
for arg
do
case "$expr" in
"") expr="($arg" ;;
*) expr="$expr|$arg" ;;
esac
done
expr="$expr)"
esac
# SEARCH WITH egrep, USE sed TO ADD sys> TO START OF FILENAMES FROM
# SYSTEM FILE AND pers> TO START OF FILENAMES FROM HOME LIST:
egrep -i "$expr" $persfile $sysfile |
sed -e "s@^$sysfile:@sys>@" -e "s@^$persfile:@pers>@"
exit