view build-aux/find-files-with-tests.sh @ 20949:e456327188f9

* cdisplay.c: Additional programming notes.
author John W. Eaton <jwe@octave.org>
date Sat, 19 Dec 2015 09:15:23 -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