spcd/cd/__init__.py

13 lines
238 B
Python
Raw Normal View History

2024-04-26 21:58:35 +02:00
import os
import sys
def install_commands():
2024-04-26 22:34:06 +02:00
print('PATH:', os.environ['PATH'])
os.symlink(f'/usr/local/bin/cd-list-environment', __file__)
2024-04-26 21:58:35 +02:00
if __name__ == '__main__':
command, _ = sys.argv
print(f'command: {command}')