By default, when you create a new window in GNU Screen, it will start in the directory where screen is invoked. I want to start a new window in GNU Screen at the current working directory of the window I'm currently in. How to do that? Thanks!
|
|
See the gnu screen chdir command. All new windows created in screen use this as their initial directory. Using this you can do something like
And your new window (along with any future created windows) will be in the set directory. If it's always going to be the current working dir you may be able to set something up in your screenrc to do this one in one command. See the gnu screen man page, it's quite comprehensive. Screen cannot access your shell variable nor execute backticked commands. The closest I can get to doing it in one click is with a small bash script like this
or more compactly
"screen -X" sends the command to the currently running screen session. The first line creates a variable called "currentdir". The second line sends the currentdir to the chdir command and then creates a new screen window. |
|||||||||||||
|
|
The simple solution is to put the following strings in your ~/.screenrc and then us C-x to open new windows:
http://www.michaelkelleher.info has more tips for intermediate/advanced screen users. |
|||||||
|
|
I didn't find any solution that would work when you already have a process running in a window, so I came up with my own idea. I added following lines to my .bash_profile:
The screen's working directory is updated every time you change a directory. Someone may not like this approach, but it works like a charm. |
|||
|
|
If you are on linux, you can use the tip mentioned here. It allows starting new screen window with current directory without using shell. |
|||
|
|
|
In your If you have a running screen session inside that session you can type:
Without an argument it will be your home directory, the same result as typing If you have a script (this is a programming q&a site) or are outside screen and screen is running you can issue:
Which you'll likely follow with running some new process in screen with:
I haven't yet found a way to find out what it was and change it back (in a script) so if someone would like to update this answer with that, please do. |
|||
|
|
|
You could also run:
Or if you want to start a new window as soon as you set chdir, use:
|
|||
|
|