cat $F| tr '\n''_'| egrep "(//|#) Copyright 20[0-9]{2}(/20[0-9]{2})? syzkaller project authors\. All rights reserved\._(//|#) Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file\." >/dev/null
if[$? -eq 0];thencontinue;fi
# Ignore auto-generated files.
egrep "(//|#) AUTOGENERATED FILE|(WARNING: This file is machine generated)"$F >/dev/null
if[$? -eq 0];thencontinue;fi
# Ignore untracked files.
git ls-files --error-unmatch $F >/dev/null 2>&1
if[$? -ne 0];thencontinue;fi
echo"$F: does not have standard copyright statement"
FAILED="1"
done
if["$FAILED" !=""];thenexit 1;fi
echo"$FILES files checked for copyright statement"