CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 16 Jul 2025 05:41:13 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090210084114
location: https://web.archive.org/web/20090210084114/https://examples.oreilly.com/upt2/split/lookfor
server-timing: captures_list;dur=0.596472, exclusion.robots;dur=0.025293, exclusion.robots.policy;dur=0.015130, esindex;dur=0.013478, cdx.remote;dur=10.290250, LoadShardBlock;dur=192.285462, PetaboxLoader3.datanode;dur=76.852370, PetaboxLoader3.resolve;dur=69.542231
x-app-server: wwwb-app201
x-ts: 302
x-tr: 230
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app201; 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:41:18 GMT
content-type: text/plain
content-length: 698
x-archive-orig-date: Tue, 10 Feb 2009 08:41:14 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "2272c4-2ba-90194900"
x-archive-orig-accept-ranges: bytes
x-archive-orig-content-length: 698
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:41:14 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 19 Jun 2002 01:38:50 GMT", ; rel="prev memento"; datetime="Sun, 18 May 2008 20:32:08 GMT", ; rel="memento"; datetime="Tue, 10 Feb 2009 08:41:14 GMT", ; rel="next memento"; datetime="Wed, 30 Sep 2015 17:28:10 GMT", ; rel="last memento"; datetime="Fri, 25 Mar 2016 03:26:52 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_20090210084027_crawl100.arc.gz
server-timing: captures_list;dur=0.526275, exclusion.robots;dur=0.024086, exclusion.robots.policy;dur=0.014674, esindex;dur=0.009658, cdx.remote;dur=8.349426, LoadShardBlock;dur=93.741481, PetaboxLoader3.datanode;dur=5120.515085, load_resource;dur=5147.566827, PetaboxLoader3.resolve;dur=75.964617
x-app-server: wwwb-app201
x-ts: 200
x-tr: 5278
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
#
# Usage: lookfor <-/+days> ...
# lookfor - look for all files in the specified directory hierarchy
# modified within a certain time, and pass the resulting names to
# grep to scan for a particular pattern.
# Temporary file to store find results
temp=/tmp/lookfor$$
# Clean up if we're interrupted
trap 'rm -f $temp; exit' 0 1 2 15
# Find all files in the specified directory that were modified within
# the specified time
find $1 -mtime $2 -print > $temp
# shift the directory name and modification time off the command line
shift; shift
# Look for each word (ignoring case) in the result of the find
for word
do grep -i "$word" `cat $temp` /dev/null
done