URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rc203soc/] [sw/] [uClinux/] [scripts/] [hfiles.sh] - Rev 1777
Go to most recent revision | Compare with Previous | Blame | View Log
#!/bin/sh # # This script looks to see if a directory contains .h files # for dir in $@; do for hfile in $dir/*.h; do if [ -f $hfile ]; then echo $dir; fi break done done exit 0
Go to most recent revision | Compare with Previous | Blame | View Log