| Revision: | 2.1 |
| Committed: | Sat Jan 1 09:16:05 1994 UTC (31 years, 10 months ago) by greg |
| Content type: | application/x-csh |
| Branch: | MAIN |
| Log Message: | Initial revision |
| # | 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$$ |