rwx/src/arg/__init__.py

7 lines
116 B
Python
Raw Normal View History

2023-10-10 22:11:57 +02:00
import sys
def split() -> tuple[str, list[str]]:
2024-02-16 16:07:36 +01:00
command, *arguments = sys.argv
return command, arguments