1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-26 01:15:37 +00:00
elinks/doc/tools/elinks_wine.py
Witold Filipczyk 020a692ec2 [wine] +x
2023-11-05 13:22:09 +01:00

16 lines
401 B
Python
Executable File

#!/usr/bin/python3
import os
import sys
if __name__ == '__main__':
was_elinks = False
with os.popen('wine {0} {1}'.format(os.getenv('ELINKS_BINARY'), sys.argv[1]), 'r') as fi:
for line in fi:
if not was_elinks:
if not line.startswith('ELinks'):
continue
was_elinks = True
print(line, end='')
sys.exit(0)