Execute Shell Script with Argument 😧

@iNik Thanks you helped me clarify argument and STDIN input. On the other hand my Python 3 script works perfectly but can only display the only argument it now receives with this KM action...
Here is a new version which integrates STDIN:

#!/opt/local/bin/python3
# -*- coding: utf-8 -*-

# km-8.2-execute-shell-script-argument-and-stdin.py

from sys import argv,exit,stdin
print('stdin:',"'"+list(stdin)[0]+"'")
print('temporary scipt file:',"'"+argv[0]+"'");print();exit()

@peternlewis Feature request: It would be desirable that this KM action integrates the passage of arguments as it already allows with STDIN: it is one of the important features of shell scripts.