Is it possible to open a terminal window with 3 tabs. Each tab should have different path.
Example:
Tab1: /etc
Tab2: /bin
Tab3: /www/ tail -f file.txt
See Question&Answers more detail:osIs it possible to open a terminal window with 3 tabs. Each tab should have different path.
Example:
Tab1: /etc
Tab2: /bin
Tab3: /www/ tail -f file.txt
See Question&Answers more detail:osThis is absolutely possible, but it will take some work on your part. The first thing you need is to set up each window/tab you want in your Settings:
I have 4 tabs that I open automagically every time I open Terminal. DB Shell
, Editor
, Server
, and Shell
. These are all within the Sasquatch
(don't ask) project, thus the naming. Each of these should then have a unique command associated with them:
In this case, I'm executing vim
. If you happen to have a specific directory you'd like to start off in, you can use something like vim ~/projects/main/
. Really whatever you want to go in there is the command the shell will execute when it opens. Now you need to open all your windows/tabs:
Shell
menu => New Tab
/New Window
=> Select the profile you created above.Window
menu => Save Window As Group...
.Window
menu => Open Window Group
=> Select the group you just made.This should pop up all the windows you just had, in the same position. Each of the commands you set up in Settings
should be launched in their respective tabs.