如何使用Python API在iTerm会话中运行某些命令



我正在尝试编写一个脚本,可以在我的iTerm2上进行一些自动化。 我正在使用 Python API for iTerm,因为我对 AppleScript 一无所知。

我需要做的就是基本上,将屏幕拆分为 6 个窗口,并在每个窗口中本地运行 6 个微服务。我成功地拆分了屏幕,但我无法在其中任何一个运行命令。

提前谢谢。

我现有的代码如下

#!/usr/bin/env python3.7
import iterm2
# This script was created with the "basic" environment which does not support adding dependencies
# with pip.
async def main(connection):
# Your code goes here. Here's a bit of example code that adds a tab to the current window:
app = await iterm2.async_get_app(connection)
window = app.current_terminal_window
if window is not None:
await window.async_create_tab()
else:
# You can view this message in the script console.
print("No current window")
leftOne = app.current_terminal_window.current_tab.current_session
rightOne = await leftOne.async_split_pane(vertical=True)
leftTwo = await leftOne.async_split_pane()
leftThree = await leftOne.async_split_pane()
rightTwo = await rightOne.async_split_pane()
rightThree = await rightOne.async_split_pane()
await leftOne.async_activate()
await leftOne.as
iterm2.run_until_complete(main)

您可以使用async_send_text()方法将击键发送到会话。

在您的代码中,以下内容将执行命令:

leftOne = app.current_terminal_window.current_tab.current_session
await leftOne.async_send_text('whoamin')

相关内容

  • 没有找到相关文章

最新更新