From ad520b45ff2b06e2fea224bc42715ad8e0606918 Mon Sep 17 00:00:00 2001 From: Joshua Tauberer Date: Sun, 8 Jun 2014 17:21:13 -0400 Subject: [PATCH] adding a new script archive_conf_files.sh to dump the contents of all files modified by editconf.py so testing is easier --- tools/archive_conf_files.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tools/archive_conf_files.sh diff --git a/tools/archive_conf_files.sh b/tools/archive_conf_files.sh new file mode 100644 index 00000000..28b6b24f --- /dev/null +++ b/tools/archive_conf_files.sh @@ -0,0 +1,9 @@ +# Use this script to make an archive of the contents of all +# of the configuration files we edit with editconf.py. +for fn in `grep -hr editconf.py setup | sed "s/tools\/editconf.py //" | sed "s/ .*//" | sort | uniq`; do + echo ====================================================================== + echo $fn + echo ====================================================================== + cat $fn +done +