This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
import subprocess | |
def print_wiki_options(file) : | |
subprocess.call("clear") | |
with open(file, 'r') as f : | |
for line in f: | |
sys.stdout.write(line) |