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