CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 17 Jul 2025 23:25:26 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090210083402
location: https://web.archive.org/web/20090210083402/https://examples.oreilly.com/upt2/split/stripper
server-timing: captures_list;dur=0.765458, exclusion.robots;dur=0.028078, exclusion.robots.policy;dur=0.012033, esindex;dur=0.015501, cdx.remote;dur=41.947188, LoadShardBlock;dur=232.958585, PetaboxLoader3.datanode;dur=142.268067
x-app-server: wwwb-app203
x-ts: 302
x-tr: 299
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app203; 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 23:25:27 GMT
content-type: text/plain
content-length: 512
x-archive-orig-date: Tue, 10 Feb 2009 08:34:02 GMT
x-archive-orig-server: Apache
x-archive-orig-last-modified: Mon, 31 Mar 2008 18:10:12 GMT
x-archive-orig-etag: "12457ca-200-90194900"
x-archive-orig-accept-ranges: bytes
x-archive-orig-content-length: 512
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:34:02 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Mon, 19 Aug 2002 08:54:45 GMT", ; rel="prev memento"; datetime="Wed, 18 Oct 2006 00:11:19 GMT", ; rel="memento"; datetime="Tue, 10 Feb 2009 08:34:02 GMT", ; rel="next memento"; datetime="Wed, 30 Sep 2015 12:51:08 GMT", ; rel="last memento"; datetime="Fri, 25 Mar 2016 03:20:43 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_20090210083354_crawl100.arc.gz
server-timing: captures_list;dur=1.653863, exclusion.robots;dur=0.023611, exclusion.robots.policy;dur=0.010280, esindex;dur=0.010613, cdx.remote;dur=115.773503, LoadShardBlock;dur=138.815664, PetaboxLoader3.datanode;dur=161.005527, load_resource;dur=395.539014, PetaboxLoader3.resolve;dur=317.227371
x-app-server: wwwb-app203
x-ts: 200
x-tr: 677
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
#
# stripper - strip executables in your ~/bin directory
skipug="! -perm -4000 ! -perm -2000" # SKIP SETUID, SETGID FILES
# find all executable files that aren't setuid or setgid
find $HOME/bin -type f \( -perm -0100 $skipug \) -print |
# get a description of each file
xargs file |
# skip shell scripts and other files that can't be stripped
# by searching for non stripped executable files
sed -n '/executable .*not stripped/s/: .*//p' |
# Pipe what's left to the strip command
xargs -t strip