You are here: Home / archived / radsite / radiance / pub / incoming / maddux / bin.ccc / raddepend

raddepend

#!/bin/csh -f # SCCSid "@(#)raddepend.csh 2.6 9/8/95 LBL" # # Find scene dependencies in this directory # set es=1 onintr quit rm -f EMPTY echo -n > EMPTY sleep 2 ( ls $* | sed -e 's~/~\\/~g' -e 's@^@/^@' -e 's@$@$/d@' ; echo '/^EMPTY$/,$d' ) > /tmp/sed$$ getbbox -w $* >/dev/null set es=$status if ( $es == 0 ) then sync sleep 2 ls -tuL | sed -f /tmp/sed$$ | sort endif quit: rm -f /tmp/sed$$ EMPTY exit $es
by admin – last modified Nov 09, 2019 09:22 AM