spcd/cd/__main__.py
Marc Beninca 70a8fd3e93
Some checks failed
/ job (push) Failing after 8s
ssh/wip
2024-05-31 00:29:12 +02:00

18 lines
376 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()
cd.install_commands(__file__)
else:
command = command.replace('-', '_')
function = getattr(cd, command)
function(*arguments)