spcd/cd/__main__.py
Marc Beninca fae88fc9d2
Some checks failed
/ job (push) Failing after 6s
swap
2024-04-26 23:10:58 +02:00

13 lines
207 B
Python
Executable file

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