I can do
tail -vf -c5 thefile \
| cat -n \
| sed -E 's/a/b/g' \
;
But the following gives no output.
tail -vf -c5 thefile \
| cat -n \
| sed -E 's/a/b/g' \
| sed -E 's/f/F/g' \
;
Why?