I am constantly opening up a pair of terminal windows which I like to have on separate tabs that I then use to SSH to the same pair of servers. I then set the titles of each tab to be that of the server I am connecting to. This is something I do manually every day and would love to be able to automate it.
So I tried the following:
gnome-terminal --tab
gnome-terminal --tab
gnome-terminal -t hello
gnome-terminal -t=hello
gnome-terminal -t="hello"
gnome-terminal --title="hello"
gnome-terminal --title=hello
gnome-terminal --title='hello'
gnome-terminal --tab --title='hello'
None of these options were able to open a new terminal window in a tab or with the title set to "hello". I haven't even tried to tackle the problem of ssh-ing to the servers yet. What am I doing wrong?