summaryrefslogtreecommitdiffstats
path: root/debian/lintian-to-copyright.sh
blob: ab7960e929e0ec110e2bb1c203ff3d0fec044a0c (plain)
1
2
3
4
5
#!/bin/sh
# Pipe the output of lintian into this.
sed -ne 's,.* file-without-copyright-information ,,p' | cut -d/ -f1-2 | sort -u | while read x; do
	/usr/share/cargo/scripts/guess-crate-copyright "$x"
done