gpt4 book ai didi

bash - 从 gimp xcf 文件中提取文本

转载 作者:太空宇宙 更新时间:2023-11-03 19:03:46 25 4
gpt4 key购买 nike

我无法在同一个脚本中摆脱 lisp,传递给 bash...

 #!/bin/bash
{
gimp -n -i -b - <<EOF
(let* ( (file's (cadr (file-glob "*.xcf" 1))) (filename "") (image 0) (number 0) (condition 0) (testo "") )
(while (pair? file's)
...
(gimp-quit 0)
)
EOF
}

echo $testo;

最佳答案

testo 的值在你的 gimp 代码中不会反射(reflect)在你的 shell 环境中。为此,您需要打印值并捕获输出。

在 shell 中这样做的一般方法是 var=$(command) (这会将 var 的值设置为来自 command 的标准输出)。

关于bash - 从 gimp xcf 文件中提取文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32458447/

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