scripts/spdxcheck-test.sh

Source file repositories/reference/linux-study-clean/scripts/spdxcheck-test.sh

File Facts

System
Linux kernel
Corpus path
scripts/spdxcheck-test.sh
Extension
.sh
Size
284 bytes
Lines
11
Domain
Support Tooling And Documentation
Bucket
scripts
Inferred role
Support Tooling And Documentation: scripts
Status
atlas-only

Why This File Exists

Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.

Dependency Surface

Detected Declarations

Annotated Snippet

#!/bin/sh

# run check on a text and a binary file
for FILE in Makefile Documentation/images/logo.gif; do
	python3 scripts/spdxcheck.py $FILE
	python3 scripts/spdxcheck.py - < $FILE
done

# run check on complete tree to catch any other issues
python3 scripts/spdxcheck.py > /dev/null

Annotation

Implementation Notes