view build-aux/find-files-with-tests.sh @ 18095:e89c6ca811e4 classdef

maint: classdef merged to default, closing classdef branch
author John W. Eaton <jwe@octave.org>
date Thu, 05 Dec 2013 12:07:10 -0500
parents 43e6415393ff
children 3b4bb843ffcd
line wrap: on
line source

#! /bin/sh

set -e
GREP=${GREP:-grep}
SED=${SED:-sed}

srcdir="$1"
shift

for arg
do
  if [ -f "$arg" ]; then
    file="$arg"
  else
    file="$srcdir/$arg"
  fi
  if [ "`$GREP -l '^%!' $file`" ]; then
    echo "$file" | $SED "s,\\$srcdir/,,";
  fi
done