spcd/cd/__main__.py
Marc Beninca 5fdfd1637b
All checks were successful
/ job (push) Successful in 5m52s
arg0
2024-06-01 20:14:06 +02:00

18 lines
386 B
Python
Executable file

#! /usr/bin/env python3
import os
import sys
import cd
if __name__ == '__main__':
command, *arguments = sys.argv
command = os.path.basename(command)
if command == '__main__.py':
cd.set_ssh(*arguments)
cd.install_commands(__file__)
else:
command = command.replace('-', '_')
function = getattr(cd, command)
function(*arguments)