我正在尝试做的事情:
- 编写脚本以打开 3 个选项卡。
cd
进入每个选项卡中的不同文件夹(即:运行唯一命令)。- 让每个标签都有一个唯一的标题
我想要这个脚本,所以我可以单击我的桌面上的脚本并让它打开终端,因为我想要我的日常开发环境。
描述:
我有这个脚本来尝试打开 3 个终端选项卡,其中包含要在选项卡中运行的独特命令:
open_tabs.sh
#!/bin/bash
gnome-terminal --tab -- bash -c "source $HOME/.bashrc && set-title hey; exec bash"
gnome-terminal --tab -- bash -c "cd ~; exec bash"
gnome-terminal --tab
当我使用 运行它时./open_tabs.sh
,它会打开 3 个新标签,但不幸set-title
的是无法设置标签标题!我在打开的选项卡中收到此错误:
bash: set-title: command not found
我已经set-title
定义为这样的函数~/.bashrc
。它的目的是在任何终端窗口的顶部设置标题字符串。当我手动使用它时它工作得很好。例如:set-title hey how are you?
会放“嘿,你好吗?” 在我的终端窗口的顶部。
# From: https://unix.stackexchange.com/questions/177572/how-to-rename-terminal-tab-title-in-gnome-terminal/566383#566383
set-title() {
# If the length of string stored in variable `PS1_BAK` is zero...
# - See `man test` to know that `-z` means "the length of STRING is zero"
if [[ -z "$PS1_BAK" ]]; then
# Back up your current Bash Prompt String 1 (`PS1`) into a global backup variable `PS1_BAK`
PS1_BAK=$PS1
fi
# Set the title escape sequence string with this format: `\[\e]2;new title\a\]`
# - See: https://wiki.archlinux.org/index.php/Bash/Prompt_customization#Customizing_the_terminal_window_title
TITLE="\[\e]2;$@\a\]"
# Now append the escaped title string to the end of your original `PS1` string (`PS1_BAK`), and set your
# new `PS1` string to this new value
PS1=${PS1_BAK}${TITLE}
}
我该如何解决!?我试过export
ing 和source
ing 只是不知道我在这里做错了什么。
有关的:
- 打开带有多个选项卡的终端并执行为每个选项卡唯一修改 PS1 变量的应用程序
- https://unix.stackexchange.com/questions/177572/how-to-rename-terminal-tab-title-in-gnome-terminal/566383#566383
使用多个选项卡打开终端并执行应用程序<== 这是我真正想要解决
gnome-terminal
的问题,但现在不推荐使用--command
( ) 选项!-e
# Option “--command” is deprecated and might be removed in a later version of gnome-terminal. # Use “-- ” to terminate the options and put the command line to execute after it.
要让 bash
~/.bashrc
在启动时读取和执行,请将其作为交互式 shell 启动:现在,为什么您在非交互式 shell 中获取文件的方法不起作用?我强烈认为你的
~/.bashrc
开头是这样的:如果它所在的 shell 在它的任何地方都没有“i”,那么它可以
return
不做任何事情$-
,即它是一个交互式 shell。$-
是一个特殊的参数,man bash
说: