ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/raddepend.csh
(Generate patch)

Comparing ray/src/util/raddepend.csh (file contents):
Revision 2.1 by greg, Sat Jan 1 09:16:05 1994 UTC vs.
Revision 2.4 by greg, Mon Feb 7 12:02:52 1994 UTC

# Line 1 | Line 1
1   #!/bin/csh -f
2   # SCCSid "$SunId$ LBL"
3   #
4 < # Find scene dependencies in this directory and one level down
4 > # Find scene dependencies in this directory
5   #
6 + set es=1
7   onintr quit
8 < ( ls $* | sed -e 's@^@/^@' -e 's@$@$/d@' ; echo "/^com$$"'$/,$d' ) > com$$
9 < xform -e $* > /dev/null
10 < ls -tu * */* | sed -f com$$ | sort
8 > rm -f EMPTY
9 > echo -n > EMPTY
10 > sleep 1
11 > ( ls $* | sed -e 's@^@/^@' -e 's@$@$/d@' ; echo '/^EMPTY$/,$d' ) > /tmp/sed$$
12 > getbbox -w $* >/dev/null
13 > set es=$status
14 > if ( $es == 0 ) then
15 >        ls -tuL | sed -f /tmp/sed$$ | sort
16 > endif
17   quit:
18 < rm -f com$$
18 > rm -f /tmp/sed$$ EMPTY
19 > exit $es

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines