diff options
Diffstat (limited to 'cpp/examples/verify_all')
-rwxr-xr-x | cpp/examples/verify_all | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/examples/verify_all b/cpp/examples/verify_all index baffd422ad..9d71c7498a 100755 --- a/cpp/examples/verify_all +++ b/cpp/examples/verify_all @@ -48,7 +48,7 @@ if test -z "$exclude_regexp"; then run_examples=$all_examples else for f in $all_examples; do - { cat $f | grep $exclude_regexp > /dev/null ; } || run_examples="$run_examples $f" + { echo $f | grep $exclude_regexp > /dev/null ; } || run_examples="$run_examples $f" done fi $verify $topsrcdir $topbuilddir $run_examples |