CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Tue, 19 Aug 2025 07:37:11 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20080518203051
location: https://web.archive.org/web/20080518203051/https://examples.oreilly.com/upt2/split/elookfor
server-timing: captures_list;dur=0.667557, exclusion.robots;dur=0.026584, exclusion.robots.policy;dur=0.010367, esindex;dur=0.012090, cdx.remote;dur=7.077526, LoadShardBlock;dur=141.436210, PetaboxLoader3.datanode;dur=42.391088, PetaboxLoader3.resolve;dur=40.604800
x-app-server: wwwb-app224
x-ts: 302
x-tr: 176
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app224; 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: Tue, 19 Aug 2025 07:37:11 GMT
content-type: text/plain
content-length: 592
x-archive-orig-date: Sun, 18 May 2008 20:30:49 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "54c3bd-250-90194900"
x-archive-orig-accept-ranges: bytes
x-archive-orig-content-length: 592
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:30:51 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 26 Apr 2002 16:03:38 GMT", ; rel="prev memento"; datetime="Tue, 16 Oct 2007 16:13:47 GMT", ; rel="memento"; datetime="Sun, 18 May 2008 20:30:51 GMT", ; rel="next memento"; datetime="Tue, 10 Feb 2009 08:33:37 GMT", ; rel="last memento"; datetime="Fri, 25 Mar 2016 03:19: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_3_20080518193113_crawl107-c/52_3_20080518203051_crawl100.arc.gz
server-timing: captures_list;dur=0.662085, exclusion.robots;dur=0.027932, exclusion.robots.policy;dur=0.010522, esindex;dur=0.016119, cdx.remote;dur=15.498407, LoadShardBlock;dur=229.981801, PetaboxLoader3.datanode;dur=210.396055, PetaboxLoader3.resolve;dur=176.034918, load_resource;dur=179.435385
x-app-server: wwwb-app224
x-ts: 200
x-tr: 455
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
#
# Usage: lookfor <-/+days> ...
# lookfor - look for all files in the specified directory hierarchy
# modified within a certain time, and pass the resulting names to
# egrep to scan for a particular pattern.
where="$1"
when="$2"
shift; shift
# Build egrep expression like (word1|word2|...) in $expr
for word
do
case "$expr" in
"") expr="($word" ;;
*) expr="$expr|$word" ;;
esac
done
expr="$expr)"
# Do the search in one sweep, passing the results of the find to egrep
find $where -mtime $when -print | xargs egrep -i "$expr" /dev/null