|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 372 (0x174) Types: TextFile Names: »fixPATH«
└─⟦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«
#! /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