CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 16 Jul 2025 21:26:29 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090210085348
location: https://web.archive.org/web/20090210085348/https://examples.oreilly.com/upt2/split/!
server-timing: captures_list;dur=0.543648, exclusion.robots;dur=0.021154, exclusion.robots.policy;dur=0.010528, esindex;dur=0.014400, cdx.remote;dur=23.492923, LoadShardBlock;dur=338.779310, PetaboxLoader3.datanode;dur=174.269477, PetaboxLoader3.resolve;dur=132.258026
x-app-server: wwwb-app223
x-ts: 302
x-tr: 387
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app223; 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 21:26:30 GMT
content-type: text/plain
content-length: 801
x-archive-orig-date: Tue, 10 Feb 2009 08:53:48 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "5ce0fc-321-90194900"
x-archive-orig-accept-ranges: bytes
x-archive-orig-content-length: 801
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:53:48 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 26 Apr 2002 15:59:03 GMT", ; rel="prev memento"; datetime="Sun, 18 May 2008 20:28:17 GMT", ; rel="memento"; datetime="Tue, 10 Feb 2009 08:53:48 GMT", ; rel="next memento"; datetime="Wed, 30 Sep 2015 19:16:17 GMT", ; rel="last memento"; datetime="Fri, 25 Mar 2016 03:05:22 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_20090210085301_crawl100.arc.gz
server-timing: captures_list;dur=0.762828, exclusion.robots;dur=0.021355, exclusion.robots.policy;dur=0.010319, esindex;dur=0.009818, cdx.remote;dur=49.596149, LoadShardBlock;dur=536.915179, PetaboxLoader3.datanode;dur=139.000338, PetaboxLoader3.resolve;dur=448.727556, load_resource;dur=198.723428
x-app-server: wwwb-app223
x-ts: 200
x-tr: 812
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
### ! - run a command, store output in a temporary file, output filename
### Typical usage: comm `! sort file1` `! sort file2`
##
## Program idea from article on USENET net.unix-wizards, 24 Sep 1986,
## by Jason Zions of Hewlett-Packard Colorado Networks, jason@hpcnoe.UUCP.
## Answer to request by Arthur David Olson, ado@elsie.UUCP, for something
## that worked this way.
##
## Problem: doesn't clean up after itself; should delete temp files.
## Answer (dirty): make it start a background process to sleep and rm.
## Or, make the temp files in a directory that cron cleans up every day.
temp=/tmp/bang$$
case $# in
0) echo "Usage: `basename $0` command [args]" 1>&2
echo $temp # WE HOPE COMMAND WILL BOMB WHEN IT CAN'T OPEN THIS FILE
exit 1
;;
*) "$@" > $temp
echo $temp
;;
esac