Commit ad520b45 authored by Joshua Tauberer's avatar Joshua Tauberer

adding a new script archive_conf_files.sh to dump the contents of all files...

adding a new script archive_conf_files.sh to dump the contents of all files modified by editconf.py so testing is easier
parent ca34c1b1
# 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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment