URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [rtos/] [rtems/] [tools/] [build/] [search-id.sh] - Rev 272
Go to most recent revision | Compare with Previous | Blame | View Log
#!/bin/sh # # $Id: search-id.sh,v 1.2 2001-09-27 12:02:53 chris 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/$$*
Go to most recent revision | Compare with Previous | Blame | View Log