URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [tools/] [build/] [search-id.sh] - Rev 1765
Compare with Previous | Blame | View Log
#!/bin/sh # # search-id.sh,v 1.1 1998/01/16 16:56:19 joel Exp # 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/$$*