spcd/cd/__init__.py

13 lines
238 B
Python
Raw Normal View History

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