1#!/bin/sh 2# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 3# Author: Dodji Seketeli <dodji@redhat.com> 4 5#This does the actual re-licensing 6grep '^\.' relicensing-scripts/files-with-lgplv3.txt | while read file 7do 8 echo ./relicensing-scripts/replace-spdx-license.sh --from "LGPL-3.0-or-later" --to "Apache-2.0 WITH LLVM-exception" "$file" 9done 10