Revision: | 2.7 |
Committed: | Sat Feb 22 02:07:30 2003 UTC (22 years, 2 months ago) by greg |
Content type: | application/x-csh |
Branch: | MAIN |
CVS Tags: | rad3R7P2, rad3R7P1, rad3R5, rad3R6, rad3R6P1, rad3R8, rad3R9 |
Changes since 2.6: | +1 -1 lines |
Log Message: | Changes and check-in for 3.5 release Includes new source files and modifications not recorded for many years See ray/doc/notes/ReleaseNotes for notes between 3.1 and 3.5 release |
# | Content |
---|---|
1 | #!/bin/csh -f |
2 | # RCSid: $Id$ |
3 | # |
4 | # Find scene dependencies in this directory |
5 | # |
6 | set es=1 |
7 | onintr quit |
8 | rm -f EMPTY |
9 | echo -n > EMPTY |
10 | sleep 2 |
11 | ( ls $* | sed -e 's~/~\\/~g' -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 | sync |
16 | sleep 2 |
17 | ls -tuL | sed -f /tmp/sed$$ | sort |
18 | endif |
19 | quit: |
20 | rm -f /tmp/sed$$ EMPTY |
21 | exit $es |