spcd/cd/__init__.py
Marc Beninca 49f2ef0a34
Some checks failed
/ job (push) Failing after 8s
+x
2024-04-26 22:41:11 +02:00

12 lines
238 B
Python
Executable file

import os
import sys
def install_commands():
print('PATH:', os.environ['PATH'])
os.symlink(__file__, f'/usr/local/bin/cd-list-environment')
if __name__ == '__main__':
command, _ = sys.argv
print(f'command: {command}')