Used as part of M&A for eBay open source group

./gitlab-repo-dl.sh all-repo-list | tee list.txt
.*gitlab-repo-dl.sh from-list list.txt repos*

Python

safe_licenses = [
    "Apache Software License",
    "Apache License 2.0",
    "MIT License",
    "MIT",
    "BSD License",
    "Public Domain",
    "Python Software Foundation License",
    "Mozilla Public License 2.0 (MPL 2.0)",
]
echo '[tool.pylic]
safe_licenses = [
    "Apache Software License",
    "Apache License 2.0",
    "MIT License",
    "MIT",
    "BSD License",
    "Public Domain",
    "Python Software Foundation License",
    "Mozilla Public License 2.0 (MPL 2.0)",
]' >> pyproject.toml
pylic check

Nodejs

    pushd $(dirname $p)
    npm i
    npx license-checker --exclude "MIT,ISC,BSD-3-Clause,Apache-2.0,BSD-2-Clause,0BSD,CC-BY-4.0" --unknown
    popd
done