12 lines
238 B
Python
12 lines
238 B
Python
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}')
|