Dear #python and #unix hackers,
I’m trying to find out, in Python, if "grep" has the option "--color=auto" or not.
(to make #offpunk compatible with #openbsd grep )
Any suggestion? (the one on the mailing-list doesn’t work for me)
I could simply scan "grep --help" for the option but, intuitively, I don’t like it.
https://lists.sr.ht/~lioploum/offpunk-devel/%3CD5XQC1ECYEID.3KHOCET4CTSM0@dsilva.email%3E
b'color' in open('/bin/grep','rb').read() ?
@tnt : that’s quite error prone (need to check the path).
I managed to do it by checking for "x" in the binary stream b'x' with the color option. If it fails, fallback to grep without color. (the challenge was to ensure that the grep test would succeed)
https://git.sr.ht/~lioploum/offpunk/commit/6d897bf891d80948f0fae9c37e7f3cb50e4fb7fa