CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 16 Jul 2025 10:17:26 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090210094449
location: https://web.archive.org/web/20090210094449/https://examples.oreilly.com/upt2/split/offset
server-timing: captures_list;dur=0.647612, exclusion.robots;dur=0.024540, exclusion.robots.policy;dur=0.010699, esindex;dur=0.014143, cdx.remote;dur=139.838248, LoadShardBlock;dur=527.098143, PetaboxLoader3.datanode;dur=142.019369, PetaboxLoader3.resolve;dur=243.834296
x-app-server: wwwb-app224
x-ts: 302
x-tr: 690
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: 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: Wed, 16 Jul 2025 10:17:27 GMT
content-type: text/plain
content-length: 1283
x-archive-orig-date: Tue, 10 Feb 2009 09:44:49 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "6b1ec4-503-90194900"
x-archive-orig-accept-ranges: bytes
x-archive-orig-content-length: 1283
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:44:49 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 21 Mar 2003 14:36:41 GMT", ; rel="prev memento"; datetime="Sun, 18 May 2008 20:46:07 GMT", ; rel="memento"; datetime="Tue, 10 Feb 2009 09:44:49 GMT", ; rel="next memento"; datetime="Wed, 30 Sep 2015 12:45:25 GMT", ; rel="last memento"; datetime="Fri, 25 Mar 2016 02:57:58 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_20090210094437_crawl100.arc.gz
server-timing: captures_list;dur=0.671700, exclusion.robots;dur=0.048758, exclusion.robots.policy;dur=0.035619, esindex;dur=0.014517, cdx.remote;dur=12.409102, LoadShardBlock;dur=705.791628, PetaboxLoader3.resolve;dur=650.185449, PetaboxLoader3.datanode;dur=594.637671, load_resource;dur=577.751366
x-app-server: wwwb-app224
x-ts: 200
x-tr: 1319
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
#
### offset - indent each line (default: 5 spaces); write to stdout
### Usage: offset [-##] [files]
# GET INDENTATION (IF ANY) AND CHECK FOR BOGUS NUMBERS:
case "$1" in
-[0-9]|-[0-9][0-9]) indent="$1"; shift ;;
-*) echo "`basename $0`: '$1' isn't -number or is > 99." 1>&2; exit 1 ;;
esac
# SET DEFAULT:
case "$indent" in
"") indent=-5 ;;
esac
# BUILD THE SPACES FOR sed.
# FIRST case DOES MULTIPLES OF 10; SECOND case DOES SINGLE SPACES:
s=" " # TEN SPACES
case "$indent" in
-?) ;; # LESS THAN 10; SKIP IT
-1?) pad="$s" ;;
-2?) pad="$s$s" ;;
-3?) pad="$s$s$s" ;;
-4?) pad="$s$s$s$s" ;;
-5?) pad="$s$s$s$s$s" ;;
-6?) pad="$s$s$s$s$s$s" ;;
-7?) pad="$s$s$s$s$s$s$s" ;;
-8?) pad="$s$s$s$s$s$s$s$s" ;;
-9?) pad="$s$s$s$s$s$s$s$s$s" ;;
*) echo "`basename $0`: Help! \$indent is '$indent'!?!" 1>&2; exit 1 ;;
esac
case "$indent" in
-0|-?0) ;; # SKIP IT; IT'S A MULTIPLE OF 10
-1|-?1) pad="$pad " ;;
-2|-?2) pad="$pad " ;;
-3|-?3) pad="$pad " ;;
-4|-?4) pad="$pad " ;;
-5|-?5) pad="$pad " ;;
-6|-?6) pad="$pad " ;;
-7|-?7) pad="$pad " ;;
-8|-?8) pad="$pad " ;;
-9|-?9) pad="$pad " ;;
*) echo "`basename $0`: Help! \$indent is '$indent'!?!" 1>&2; exit 1 ;;
esac
# MIGHT ADD expand FIRST TO TAKE CARE OF TABS:
sed "s/^/$pad/" $*