rosenrot/plugins/readability/recompute_READABILITY_N.sh
NunoSempere 6a330e9b09 tweak: nicer blockquotes
also fix bug in archive.is / bloomberg.
2023-02-14 02:07:23 +01:00

9 lines
251 B
Bash
Executable File

#!/bin/bash
function sedr(){
find ./ -type f -exec sed -i -e "$1" {} \;
} ## e.g., sedr "s/target/replacement/g"
READABILITY_N=$(wc -c readability.js | cut -d " " -f 1)
sedr "s/^#define READABILITY_N .*/#define READABILITY_N $READABILITY_N + 1/g"