#!/bin/sh 
# Run licensecheck, stripping unknowns
# Need to sort on first column only
# fpc RunCommand does not support the | operator

# Copyright : 2023 P Blackman
# License   : BSD-2-clause


/usr/bin/licensecheck -m -r --shortname-scheme=debian ./ | grep -v UNKNOWN | sort -k 1,1
