As an alternative you could do that in a "custom command", like maybe a python command (untested):
```bash
python -c \
'import sys; sys.stdout.write("\n".join([l for l in sys.stdin.readlines() if
l % 2]))'
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/772#issuecomment-419933799
