rwx/arg/__init__.py

7 lines
116 B
Python
Raw Normal View History

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