forked from Imagelibrary/rtems
> RTEMS is under CVS control and has been since rtems 3.1.16 which was > around May 1995. So I just to add the $Id$. If you notice other files > with missing $Id$'s let me know. I try to keep w\up with it. Now that you have asked -- I'll attach a list of files lacking an RCS-Id to this mail. This list has been generated by a little sh-script I'll also enclose.
16 lines
303 B
Bash
Executable File
16 lines
303 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
find $1 -type f -a ! -name "*.scn" -a ! -name "bsp_specs" -a \
|
|
-print > /tmp/$$.0
|
|
find $1 -type f -a ! -name "*.scn" -a ! -name "bsp_specs" -a \
|
|
-exec grep -l '$Id' {} \; > /tmp/$$.1
|
|
|
|
diff /tmp/$$.0 /tmp/$$.1 > /tmp/$$.2
|
|
|
|
grep "<" /tmp/$$.2 | sed 's/< //' >&1
|
|
|
|
rm -f /tmp/$$*
|