Skip to content

Instantly share code, notes, and snippets.

View thegreenrobot's full-sized avatar
🤖
too many secrets...

Matthew Green thegreenrobot

🤖
too many secrets...
View GitHub Profile
@kirbysayshi
kirbysayshi / mass-aggregation-change.sh
Created November 23, 2011 17:14
quick examples of how to change many many wsp (graphite/whisper) files settings
for f in $(find $1 -iname "*.wsp"); do
if [ -a $f ];
then /opt/graphite/bin/whisper-set-aggregation-method.py $f max;
fi;
done