CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 07 Aug 2025 07:34:13 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20080518203243
location: https://web.archive.org/web/20080518203243/https://examples.oreilly.com/upt2/split/phone
server-timing: captures_list;dur=0.500048, exclusion.robots;dur=0.020497, exclusion.robots.policy;dur=0.009397, esindex;dur=0.011817, cdx.remote;dur=7.689370, LoadShardBlock;dur=319.308806, PetaboxLoader3.datanode;dur=55.881508, PetaboxLoader3.resolve;dur=154.100101
x-app-server: wwwb-app219
x-ts: 302
x-tr: 358
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app219; 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, 07 Aug 2025 07:34:14 GMT
content-type: text/plain
content-length: 1059
x-archive-orig-date: Sun, 18 May 2008 20:32:41 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "54c40d-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: Sun, 18 May 2008 20:32:43 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="Tue, 16 Oct 2007 16:16:54 GMT", ; rel="memento"; datetime="Sun, 18 May 2008 20:32:43 GMT", ; rel="next memento"; datetime="Tue, 10 Feb 2009 09:44:54 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_3_20080518193113_crawl107-c/52_3_20080518203051_crawl100.arc.gz
server-timing: captures_list;dur=0.784975, exclusion.robots;dur=0.032313, exclusion.robots.policy;dur=0.017202, esindex;dur=0.014618, cdx.remote;dur=7.184029, LoadShardBlock;dur=161.806377, PetaboxLoader3.datanode;dur=235.996926, PetaboxLoader3.resolve;dur=368.926426, load_resource;dur=455.698008
x-app-server: wwwb-app219
x-ts: 200
x-tr: 661
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