15 lines
257 B
Python
Executable file
15 lines
257 B
Python
Executable file
#! /usr/bin/env python3
|
|
|
|
import os
|
|
import sys
|
|
|
|
import cd
|
|
|
|
|
|
if __name__ == '__main__':
|
|
command, *_ = sys.argv
|
|
command = os.path.basename(command)
|
|
if command == '__main__.py':
|
|
cd.install_commands(__file__)
|
|
else:
|
|
print(command)
|