text property
Shell script text.
To specify an interpreter, please add a #!\n
at the beginning of the
text.(For example, to execute the script using bash, #!/bin/bash\n
should be added. To execute the script usingPython3
, #!/usr/bin/env python3\n
should be added.) Otherwise, the script will by default be
executed by /bin/sh
.
Implementation
core.String? text;