view build-aux/find-files-with-tests.sh @ 21225:19a619ac9508

rename FLOAT_TRUNCATE to OCTAVE_FLOAT_TRUNCATE * oct-cmplx.h, oct-conf-post.in.h: Rename FLOAT_TRUNCATE to OCTAVE_FLOAT_TRUNCATE.
author John W. Eaton <jwe@octave.org>
date Mon, 08 Feb 2016 17:34:12 -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