diff options
Diffstat (limited to '.run/src/bin/python-script.py')
| -rw-r--r-- | .run/src/bin/python-script.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.run/src/bin/python-script.py b/.run/src/bin/python-script.py new file mode 100644 index 0000000..9f4ff7b --- /dev/null +++ b/.run/src/bin/python-script.py @@ -0,0 +1,11 @@ +import os +import sys + +print() +print(" Welcome to use `run.sh` / `run.ps1`") +print() +print(' > "Hello World"') +print(f' > cwd : "{os.getcwd()}"') +args = ", ".join(f'"{a}"' for a in sys.argv[1:]) +print(f" > args : {args}") +print() |
