CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 07 Aug 2025 00:58:36 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20080518203041
location: https://web.archive.org/web/20080518203041/https://examples.oreilly.com/upt2/split/del
server-timing: captures_list;dur=0.764912, exclusion.robots;dur=0.026563, exclusion.robots.policy;dur=0.010876, esindex;dur=0.014484, cdx.remote;dur=657.261953, LoadShardBlock;dur=156.071026, PetaboxLoader3.datanode;dur=64.705279
x-app-server: wwwb-app224
x-ts: 302
x-tr: 837
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: Thu, 07 Aug 2025 00:58:36 GMT
content-type: text/plain
content-length: 618
x-archive-orig-date: Sun, 18 May 2008 20:30:39 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "54c432-26a-90194900"
x-archive-orig-accept-ranges: bytes
x-archive-orig-content-length: 618
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:41 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 19 Jun 2002 01:45:38 GMT", ; rel="prev memento"; datetime="Tue, 16 Oct 2007 16:13:22 GMT", ; rel="memento"; datetime="Sun, 18 May 2008 20:30:41 GMT", ; rel="next memento"; datetime="Tue, 10 Feb 2009 09:05:05 GMT", ; rel="last memento"; datetime="Fri, 25 Mar 2016 03:19:02 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_20080518202837_crawl100.arc.gz
server-timing: captures_list;dur=0.863433, exclusion.robots;dur=0.027910, exclusion.robots.policy;dur=0.011452, esindex;dur=0.015693, cdx.remote;dur=79.958010, LoadShardBlock;dur=74.002061, PetaboxLoader3.datanode;dur=161.103867, load_resource;dur=414.546404, PetaboxLoader3.resolve;dur=295.419771
x-app-server: wwwb-app224
x-ts: 200
x-tr: 604
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
#
# del - Asks if you would like to delete each file if there are three
# files or less specified. For more than three files, it displays
# them and asks you once if you wish to delete them all:
case $# in
0) echo "`basename $0`: you didn't say which file(s) to delete"; exit 1;;
# If we're deleting only 1, 2, or 3 files, confirm for each one.
[123]) /bin/rm -i "$@" ;;
# If we're deleting more then 3 files, echo them all, and confirm once.
*) echo "$*"
echo do you want to delete these files\?
read a
case "$a" in
[yY]*) /bin/rm "$@" ;;
esac
;;
esac