This commit is contained in:
Marc Beninca 2024-02-17 01:35:53 +01:00
parent 778f43dadc
commit 508872059a
13 changed files with 1 additions and 4 deletions

6
rwx/arg/__init__.py Normal file
View file

@ -0,0 +1,6 @@
import sys
def split() -> tuple[str, list[str]]:
command, *arguments = sys.argv
return command, arguments