@ComplexPoint
I tried to run an Execute Shell Script action that passes a KM variable in these statements:
`#!/usr/local/bin/python`
`n='$KMVAR_fname';`
`print(n);`
Python is not getting the variable value, it just uses the string "$KMVAR_fname" and therefore gets the wrong results.
More at: How Python script is invoked determines value of $KMVAR_ Why?
Any suggestions for what I should try?
Also, what does the PY_END construction do?
Thanks