From: Chris Hanson Date: Tue, 9 Jan 2018 01:57:33 +0000 (-0500) Subject: Implement simple script to show all of the .crf files. X-Git-Tag: mit-scheme-pucked-x11-0.3.1~7^2~397 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=21b46aae3c413e365397e702cb47eea9c6678646;p=mit-scheme.git Implement simple script to show all of the .crf files. --- diff --git a/etc/check-crefs b/etc/check-crefs new file mode 100755 index 000000000..50e62cd35 --- /dev/null +++ b/etc/check-crefs @@ -0,0 +1,10 @@ +#!/bin/bash + +set -e + +cd "$(pwd)"/"$(dirname "${0}")"/../build +for f in $(find * -type f -name \*-unx.crf); do + echo '>>>>' "${f}" + cat "${f}" + echo +done