BuildScript/scripts/ManualTests/run_sh_command.py

8 lines
180 B
Python

from commands.ShCommand import ShCommand
calendarCommand = ShCommand('cal 12 2013')
calendarCommand.execute()
touchCommand = ShCommand('touch ../tmp.txt')
touchCommand.execute()