gpt4 book ai didi

git - 如何通过 Autohotkey 读取 Git Bash 中命令的输出

转载 作者:行者123 更新时间:2023-12-05 05:13:43 29 4
gpt4 key购买 nike

我正在尝试通过 Autohotkey 向 Git Bash 终端发送命令,但无法找到读取其输出的方法。有一个简单的方法吗?我正在发送这个

运行,C:\Users\Unknown\AppData\Local\Programs\Git\git-bash.exe
sleep ,2000

发送 cd/c/Users/Unknown/Desktop/git/fw{Enter}

sleep ,1000

发送 git log --pretty=format:'`%h' -n 1{Enter}

答案是终端上显示的提交号

如何阅读?

谢谢

最佳答案

捕获输出

要捕获命令的输出,您可以使用以下 RunWaitOne() 函数之一。

选项 1: 不使用临时文件且无法 stash 命令窗口。 ( Source )

; From https://www.autohotkey.com/docs/commands/Run.htm#Examples
RunWaitOne(command) {
shell := ComObjCreate("WScript.Shell")
exec := shell.Exec(ComSpec " /C """ command """") ; change: added '"' around command
return exec.StdOut.ReadAll()
}

选项 2: 使用临时文件并 stash 命令窗口。 (在 WTFPL 下发布)

RunWaitOne(command) {
tmpFile := A_Temp . "\" . A_ScriptName . "_RunWaitOne.tmp"
RunWait, % ComSpec . " /c """ . command . " > """ . tmpFile . """""",, Hide
FileRead, result, %tmpFile%
FileDelete, %tmpFile%
return result
}

工作示例

我个人不喜欢在路径中进行硬编码,所以设置了以下答案来执行以下步骤:

  1. 在系统 PATH 环境变量中查找 Git 安装并将其存储为 GIT_BIN_DIR
  2. 如果尚未找到安装,请在默认安装目录中查找一个并将其存储为 GIT_BIN_DIR
  3. 如果找不到 Git 并退出,则显示错误消息。
  4. 排队要调用的命令。
  5. 执行命令并将结果存储在变量result中。
  6. 显示结果

代码

代码在WTFPL下发布

; STEP 1: Try to find Git on PATH
EnvGet, E_PATH, PATH
GIT_BIN_DIR := ""
for i, path in StrSplit(E_PATH, ";")
{
if (RegExMatch(path, "i)Git\\cmd$")) {
SplitPath, path, , parent
GIT_BIN_DIR := parent . "\bin"
break
}
}

; STEP 2: Fallback to default install directories.
if (GIT_BIN_DIR == "") {
allUsersPath := A_ProgramFiles . "\Git\bin"
currentUserPath := A_AppData . "\Programs\Git\bin"
if (InStr(FileExist(currentUserPath), "D"))
GIT_BIN_DIR := currentUserPath
else if (InStr(FileExist(allUsersPath), "D"))
GIT_BIN_DIR := allUsersPath
}

; STEP 3: Show error Git couldn't be found.
if (GIT_BIN_DIR == "") {
MsgBox 0x1010,, Could not find Git's 'bin' directory
ExitApp
}

; STEP 4 - Queue any commands.
; commands becomes "line1 & line2 & ..." thanks to the Join continuation section
commands := "
(Join`s&`s
cd /c/Users/Unknown/Desktop/git/fw
git log --pretty=format:'`%h' -n 1
)"

; STEP 5 - Execute the commands (Uses "Git\bin\sh.exe" so we can capture output)
result := RunWaitOne("""" . GIT_BIN_DIR . "\sh.exe"" --login -i -c """ . commands . """")

; STEP 6 - Show the result
MsgBox 0x1040,, % result

关于git - 如何通过 Autohotkey 读取 Git Bash 中命令的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53189150/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com