linux-old/scripts/hfiles.sh
<<
>>
Prefs
   1#!/bin/sh
   2#
   3# This script looks to see if a directory contains .h files
   4#
   5for dir in $@; do
   6        for hfile in $dir/*.h; do
   7                if [ -f $hfile ]; then echo $dir; fi
   8                break
   9        done
  10done
  11exit 0
  12
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.