home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / utils / scandoc.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  1995-04-01  |  129 b   |  11 lines

  1. #!/bin/ksh
  2.  
  3. find . -name "*.[cs]" -print \
  4. | while read fn
  5. do
  6.   if [ ! -f ${fn%.*}.txh ]
  7.   then
  8.     echo $fn
  9.   fi
  10. done
  11.