blob: 6dfd907f7f26cad2c27b07523b28d6251622285c [file] [log] [blame]
import os
def exec_command(command, quiet=False):
if quiet:
command = "( {command} ) 1>/dev/null 2>/dev/null".format(
command=command
)
return os.system(command)