diff options
Diffstat (limited to 'scripts/read_config.py')
-rw-r--r-- | scripts/read_config.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/read_config.py b/scripts/read_config.py new file mode 100644 index 0000000..de95af9 --- /dev/null +++ b/scripts/read_config.py @@ -0,0 +1,6 @@ +config = dict(map(lambda x: (x[0], int(x[1]) if x[1].isdecimal() else x[1][1:-1] if x[1].startswith('"') and x[1].endswith('"') else x[1]), map(lambda x: x.strip().split("=", 1), filter(lambda x: '=' in x, open(".config").readlines())))) + +if __name__ == "__main__": + import sys + if sys.argv[1] in config: + print(config[sys.argv[1]]) |