CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sun, 17 Aug 2025 19:50:59 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20080518204800
location: https://web.archive.org/web/20080518204800/https://examples.oreilly.com/upt2/split/su
server-timing: captures_list;dur=0.561399, exclusion.robots;dur=0.019312, exclusion.robots.policy;dur=0.009287, esindex;dur=0.012210, cdx.remote;dur=12.207467, LoadShardBlock;dur=177.154709, PetaboxLoader3.datanode;dur=58.867494
x-app-server: wwwb-app221
x-ts: 302
x-tr: 209
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app221; 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: Sun, 17 Aug 2025 19:51:01 GMT
content-type: text/plain
content-length: 723
x-archive-orig-date: Sun, 18 May 2008 20:47:58 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "54c3d8-2d3-90194900"
x-archive-orig-accept-ranges: bytes
x-archive-orig-content-length: 723
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:48:00 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 19 Jun 2002 02:05:32 GMT", ; rel="prev memento"; datetime="Wed, 18 Oct 2006 00:10:01 GMT", ; rel="memento"; datetime="Sun, 18 May 2008 20:48:00 GMT", ; rel="next memento"; datetime="Tue, 10 Feb 2009 08:49:17 GMT", ; rel="last memento"; datetime="Fri, 25 Mar 2016 03:20:48 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_20080518204733_crawl100.arc.gz
server-timing: captures_list;dur=0.470618, exclusion.robots;dur=0.017218, exclusion.robots.policy;dur=0.007858, esindex;dur=0.010395, cdx.remote;dur=6.171076, LoadShardBlock;dur=145.400571, PetaboxLoader3.datanode;dur=511.090860, PetaboxLoader3.resolve;dur=1452.765243, load_resource;dur=1828.679996
x-app-server: wwwb-app221
x-ts: 200
x-tr: 2005
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/csh -f
# su - fix incorrect $HOME and $USER with system 'su' command
#
# Some System V versions don't change the environment variable $HOME
# ($LOGDIR) or $USER to the right value for the account you su to.
# Also, a C shell you start on the other account won't read your .cshrc
# file. (Other shells may have the same problems.) The best fix for
# that is a shell script named su that sets the variables for you.
foreach arg ($argv)
# find first non-option argument (username to su to)
if ("x$arg" !~ x-*) then
setenv HOME ~$arg
setenv USER $arg
exec /bin/su $argv:q # End script; replace with su
endif
end
echo "$0 ERROR: can't find username."
exit 1