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