spcd/cd/__main__.py
Marc Beninca 539df80b93
Some checks failed
/ job (push) Failing after 6s
os
2024-04-26 23:16:11 +02:00

14 lines
217 B
Python
Executable file

#! /usr/bin/env python3
import os
import sys
import cd
if __name__ == '__main__':
command, *_ = sys.argv
print(command)
command = os.path.basename(command)
print(command)
cd.install_commands()