#!/bin/shfor PYTHON in python2 python3;do# run check on a text and a binary filefor FILE in Makefile Documentation/logo.gif;do$PYTHONscripts/spdxcheck.py $FILE$PYTHONscripts/spdxcheck.py - <$FILEdone# run check on complete tree to catch any other issues$PYTHONscripts/spdxcheck.py > /dev/null
done