CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 17 Jul 2025 15:48:55 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090210090725
location: https://web.archive.org/web/20090210090725/https://examples.oreilly.com/upt2/split/cleanup
server-timing: captures_list;dur=0.602697, exclusion.robots;dur=0.029852, exclusion.robots.policy;dur=0.016900, esindex;dur=0.013105, cdx.remote;dur=30.397555, LoadShardBlock;dur=369.726245, PetaboxLoader3.datanode;dur=234.361870, PetaboxLoader3.resolve;dur=117.636649
x-app-server: wwwb-app200
x-ts: 302
x-tr: 421
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: SERVER=wwwb-app200; 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, 17 Jul 2025 15:48:56 GMT
content-type: text/plain
content-length: 799
x-archive-orig-date: Tue, 10 Feb 2009 09:07:25 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "1bac1c-31f-90194900"
x-archive-orig-accept-ranges: bytes
x-archive-orig-content-length: 799
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:07:25 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 18 Aug 2002 00:55:01 GMT", ; rel="prev memento"; datetime="Sun, 18 May 2008 20:43:52 GMT", ; rel="memento"; datetime="Tue, 10 Feb 2009 09:07:25 GMT", ; rel="next memento"; datetime="Wed, 30 Sep 2015 17:27:18 GMT", ; rel="last memento"; datetime="Fri, 25 Mar 2016 03:06:13 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_20090210090608_crawl100.arc.gz
server-timing: captures_list;dur=0.753871, exclusion.robots;dur=0.038171, exclusion.robots.policy;dur=0.023006, esindex;dur=0.011997, cdx.remote;dur=64.236340, LoadShardBlock;dur=437.708347, PetaboxLoader3.datanode;dur=198.786333, PetaboxLoader3.resolve;dur=549.290638, load_resource;dur=342.217903
x-app-server: wwwb-app200
x-ts: 200
x-tr: 876
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
#
# cleanup - find files that should be removed and clean them
# out of the file system.
find / \( \( -name '#*' -atime +1 \) \
-o \( -name ',*' -atime +1 \) \
-o \( -name rogue.sav -atime +7 \) \
-o \( \( -name '*.bak' \
-o -name '*.dvi' \
-o -name '*.CKP' \
-o -name '.*.bak' \
-o -name '.*.CKP' \) -atime +3 \) \
-o \( -name '.emacs_[0-9]*' -atime +7 \) \
-o \( -name core \) \
-o \( -user guest -atime +9 \) \
\) -print -exec rm -f {} \; > /tmp/.cleanup 2>&1