DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦75cdd2a0d⟧ TextFile

    Length: 372 (0x174)
    Types: TextFile
    Names: »fixPATH«

Derivation

└─⟦db229ac7e⟧ Bits:30007240 EUUGD20: SSBA 1.2 / AFW Benchmarks
    └─⟦this⟧ »EUUGD20/AFUU-ssba1.21/ssba1.21E/musbus/fixPATH« 
    └─⟦this⟧ »EUUGD20/AFUU-ssba1.21/ssba1.21F/musbus/fixPATH« 

TextFile

#! /bin/sh
# Replace XXX by parent dir and current dir [ -w specified ] into $PATH
# for scripts.
# Used from Work* dirs.
# $Header: fixPATH,v 5.2 87/12/09 14:43:08 kenj Exp $

tmp=/tmp/$$
dir=`cd ..;pwd`
test $# -eq 1 -a "X$1X" = "X-wX" && dir="$dir:"`pwd`

for s in script.[0-9]*
do
    sed -e s,PATH=XXX,PATH=$dir, $s >$tmp
    rm -f $s
    mv $tmp $s
done

rm -f $tmp