Re: Four questions about examples of GNU Screen use

2016-03-06 Thread Axel Beckert
Hi, On Sun, Mar 06, 2016 at 01:10:34PM +0200, Lars Noodén wrote: > > asc () { > > print -Pn "\e]0;%n@%m: autossh -t $* 'screen -RdU'\a" > > autossh -x -t "$@" 'screen -RdU' > > } > > With the shell function you show for autossh, I notice the addition of > -U for screen. How impor

Re: Four questions about examples of GNU Screen use

2016-03-06 Thread Lars Noodén
Thanks, Axel. The feedback is quite helpful, especially the part about how people usually do. > Combined with the above, I use it in a shell function like this: > > asc () { > print -Pn "\e]0;%n@%m: autossh -t $* 'screen -RdU'\a" > autossh -x -t "$@" 'screen -RdU' > } With the sh