#!/bin/bash
# usage: cover files
# CSparse/Tcov/cover
# Copyright (c) 2006-2022, Timothy A. Davis. All Rights Reserved.
# SPDX-License-Identifier: LGPL-2.1+
echo '================================================================='
for file in $@
do
        echo $file
        echo '================================================================='
        grep "#####" -A5 -B5 $file
        echo '================================================================='
done
