ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/raddepend.csh
Revision: 2.1
Committed: Sat Jan 1 09:16:05 1994 UTC (30 years, 3 months ago) by greg
Content type: application/x-csh
Branch: MAIN
Log Message:
Initial revision

File Contents

# Content
1 #!/bin/csh -f
2 # SCCSid "$SunId$ LBL"
3 #
4 # Find scene dependencies in this directory and one level down
5 #
6 onintr quit
7 ( ls $* | sed -e 's@^@/^@' -e 's@$@$/d@' ; echo "/^com$$"'$/,$d' ) > com$$
8 xform -e $* > /dev/null
9 ls -tu * */* | sed -f com$$ | sort
10 quit:
11 rm -f com$$