view build-aux/find-files-with-tests.sh @ 20511:7ddb10b31126 stable

__finish__.m: Change from function to script to stay in base workspace (bug #45869). * __finish__.m: Remove function declaration changing it to a script. Update docstring.
author Rik <rik@octave.org>
date Thu, 03 Sep 2015 11:22:35 -0700
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