"""EasyEngine shell executaion functions."""
import os
class EEShellExec():
"""Method to run shell commands"""
def __init__():
pass
def cmd_exec(command):
os.system(command)