aboutsummaryrefslogtreecommitdiff
path: root/plugins/style/recompute_STYLE_N.sh
blob: 92028941531027dbd4f86e85dd5d0a7e67c0ef20 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
sed_wrapper()
{
  find ./ -type f -exec sed -i -e "$1" {} \;
} ## e.g., sedr "s/target/replacement/g"

STYLE_N=`wc -c style.js | cut -d " " -f 1`
sed_wrapper "s/^#define STYLE_N .*/#define STYLE_N $STYLE_N + 100/g"