spcd/cd/__main__.py
Marc Beninca 4bcaa782c1
Some checks failed
/ job (push) Failing after 7s
swap
2024-04-26 23:13:46 +02:00

13 lines
207 B
Python
Executable file

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