view build-aux/find-files-with-tests.sh @ 19549:0f7788e2d677

* audiodevinfo.cc: Use "||" and "&&", not "or" and "and".
author John W. Eaton <jwe@octave.org>
date Fri, 02 Jan 2015 02:18:51 -0500
parents 43e6415393ff
children
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