blob: a3bdb74251e4530a732c7e276f00eba7205073c2 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh -e
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2016-2020, Intel Corporation
# file-exceptions.sh - filter out files not checked for copyright and license
grep -v -E -e '/queue.h$' -e '/getopt.h$' -e '/getopt.c$' -e 'src/core/valgrind/' -e '/testconfig\...$'
|