#!/bin/sh# Author: Christoph Galuschka <christoph.galuschka@chello.at># Athmane Madjodj <athmanem@gmail.com> t_Log "Running $0 - python can print Hello World" # creating source fileFILE='/var/tmp/python-test.py' cat > $FILE <<EOFprint "hello centos"EOF # Executing pythonpython $FILE | grep -q "hello centos" t_CheckExitStatus $? # remove files/bin/rm $FILE