aboutsummaryrefslogtreecommitdiff
path: root/plugins/style/recompute_STYLE_N.sh
blob: 3e0f30a7b7656cfd98aecefdaccff2a0414b162a (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 + 1000/g"