From 1b0b435d4312e60cb6c6264e4027b77eeb95e7ac Mon Sep 17 00:00:00 2001 From: Mike DePaulo Date: Wed, 17 Sep 2014 08:38:22 -0400 Subject: Add identify-cygwin-packages.sh to help with GPL compliance --- bin/identify-cygwin-packages.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 bin/identify-cygwin-packages.sh diff --git a/bin/identify-cygwin-packages.sh b/bin/identify-cygwin-packages.sh new file mode 100755 index 0000000..ea2bee7 --- /dev/null +++ b/bin/identify-cygwin-packages.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +export OUT="cygwin files and packages.csv" + +if [[ $# == 0 ]]; then + echo "Example usage: $0 /bin/sh.exe /bin/libgcc_s-1.dll" + echo "Output will be appended to \"${OUT}\"" + echo "This script is intended to help with GPL compliance." + echo "Currently this script does not identify the source package," + echo "Only the binary package." + echo "Browse a cygwin mirror or use Google/DuckDuckGo to identify the source package." +fi + +echo "File,Binary Package w/ Version,Source Package" >> "${OUT}" + +for file in "$@" +do + binPkg=`cygcheck -f $file| tr -d '\r' | tr -d '\n'` + echo "${file},${binPkg}," >> "${OUT}" +done -- cgit v1.2.3