gpt4 book ai didi

shell - Guake终端启动shell脚本

转载 作者:行者123 更新时间:2023-12-02 21:21:50 25 4
gpt4 key购买 nike

我正在尝试创建一个启动脚本来在 Guake 中打开两个选项卡,执行命令,然后重命名选项卡。不幸的是,这些选项卡没有被重命名。同样令人恼火的是,它在 shell 脚本的目录而不是默认的 ~/目录中打开终端。阅读帮助文件后,我非常确定该脚本是正确的。

帮助文件:

Options:
-h, --help show this help message and exit
-f, --fullscreen Put Guake in fullscreen mode
-t, --toggle-visibility
Toggles the visibility of the terminal window
-p, --preferences Shows Guake preference window
-a, --about Shows Guake's about info
-n NEW_TAB, --new-tab=NEW_TAB
Add a new tab
-s SELECT_TAB, --select-tab=SELECT_TAB
Select a tab
-g, --selected-tab Return the selectd tab index.
-e COMMAND, --execute-command=COMMAND
Execute an arbitrary command in the selected tab.
-r RENAME_TAB, --rename-tab=RENAME_TAB
Rename the selected tab.
-q, --quit Says to Guake go away =(

这是我的 shell 脚本:

#!/bin/sh
# guakeStartup.sh

# open tabs
guake -e "irssi" -r "irssi"
guake -n -e "cd" -r "terminal"

最佳答案

在启动脚本中尝试这样的操作:

guake --rename-tab="irssi" --execute-command="irssi" &
sleep 1 &&
guake --new-tab=2 --rename-tab="terminal" --execute-command="cd" &

或者更像你原来的:

guake -e "irssi" -r "irssi" &
sleep 1 &&
guake -n=2 -e "cd" -r "terminal" &

关于shell - Guake终端启动shell脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27107771/

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