Source code for oi_cli2.utils.start_terminalimport os [docs]def start_terminal(folder: str): os.chdir(folder) os.system("$SHELL")