gpt4 book ai didi

linux - 在 gnome-terminal -x 中运行 bash 函数

转载 作者:太空狗 更新时间:2023-10-29 11:04:34 26 4
gpt4 key购买 nike

我有一个 bash 函数,我想使用 gnome 终端在新窗口中执行该函数。我该怎么做?我想在我的 blah.sh 脚本中做这样的事情:

    my_func() {
// Do cool stuff
}

gnome-terminal -x my_func

我现在正在做的是将 my_func() 放入脚本并调用 gnome-terminal -x ./my_func

最佳答案

正如@kojiro 在上面的评论中指出的那样,您可以使用 export -f 让它工作。

# Define function.
my_func() {
// Do cool stuff
}

# Export it, so that all child `bash` processes see it.
export -f my_func

# Invoke gnome-terminal with `bash -c` and the function name, *plus*
# another bash instance to keep the window open.
# NOTE: This is required, because `-c` invariably exits after
# running the specified command.
# CAVEAT: The bash instance that stays open will be a *child* process of the
# one that executed the function - and will thus not have access to any
# non-exported definitions from it.
gnome-terminal -x bash -c 'my_func; bash'

我从 https://stackoverflow.com/a/18756584/45375 借用了技术


通过一些技巧,您可以在没有 export -f 的情况下凑合,假设运行该函数后保持打开状态的 bash 实例本身不需要继承 my_func .

declare -f 返回 my_func 的定义(源代码),因此只需在新的 bash 实例中重新定义它:

gnome-terminal -x bash -c "$(declare -f my_func); my_func; bash"

话又说回来,如果你愿意,你甚至可以在其中压缩 export -f 命令:

gnome-terminal -x bash -c "$(declare -f my_func); 
export -f my_func; my_func; bash"

关于linux - 在 gnome-terminal -x 中运行 bash 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23002132/

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