Re: multi-window searching, newer screen versions

2011-08-13 Thread Artur Skonecki
On Sat, 13 Aug 2011, Aaron Davies wrote: third is that this screen interprets "hardcopy -h" as "write a hardcopy of the current screen (without scrollback) to a file named "-h" (relative to screen's pwd). i'm not entirely sure how to fix that one, If it is indeed the case, replacing hardcopyd

Re: multi-window searching, newer screen versions

2011-08-13 Thread Aaron Davies
> The script you have is pretty cool but it is hard to fit into a > workflow - one would need to save the buffers, look through the buffer > file via an external program, correlate the buffer to the screen > session in question, and then go to that screen. i have it half-working on my mac (still o

Re: multi-window searching, newer screen versions

2011-08-13 Thread Aaron Davies
On Aug 13, 2011, at 4:46 AM, Artur Skonecki wrote: > #!/bin/sh > # screen_hardcopy.sh > # print window scrollbacks from all GNU Screen sessions > # it breaks when session names contain spaces *sigh* > > SCREENDIR=/tmp/screens/S-$USER > HARDCOPYDIR=/tmp/screen-hardcopy-$USER > > mkdir -p $HARDCOP

Re: screen-users Digest, Vol 1212, Issue 1

2011-08-13 Thread Artur Skonecki
On Sat, 13 Aug 2011, Edward Peschko wrote: Anyways, wrt new screen versions. Is there a policy here? Is there a$ reason that screen-4.0.4 hasn't been released yet?$ The policy is to release when ready. The problem is the lack of$ maintainer's time. Major new features (groups, layouts, -Q flag)

Re: screen-users Digest, Vol 1212, Issue 1

2011-08-13 Thread Edward Peschko
> #!/bin/sh > # screen_hardcopy.sh > # print window scrollbacks from all GNU Screen sessions > # it breaks when session names contain spaces *sigh* Arthur, That's a pretty cool hack, but it would be much, much more useful if it was integrated. In other words, 1. go into search mode with eith

Re: multi-window searching, newer screen versions

2011-08-13 Thread Artur Skonecki
#!/bin/sh # screen_hardcopy.sh # print window scrollbacks from all GNU Screen sessions # it breaks when session names contain spaces *sigh* SCREENDIR=/tmp/screens/S-$USER HARDCOPYDIR=/tmp/screen-hardcopy-$USER mkdir -p $HARDCOPYDIR for session in $SCREENDIR/* do session=$(basename "$sessio