In what version was capture-pane -J added

2014-06-14 Thread Jesse Molina
Hi Anyone know when capture-pane -J was added? Must have been 1.7-1.9 somewhere. I don't see it in the changelog, and I'm not seeing anything obvious. Thanks. -- HPCC Systems Open Source Big Data Platform from Lexi

Get exit code from a dead pane?

2014-06-08 Thread Jesse Molina
If I want to get the process ID that is running in the active pane/window on a session, I can do this: tmux list-panes -t $SESSION -F '#{pane_pid}' But if the pane is dead because the process quit, is there a way to get the exit code that the process quit with? Specifically, I need to do thi

Re: Is tmux pipe-pane STILL broken???

2014-06-08 Thread Jesse Molina
> ashamed of forgetting, eh? > > > ---- Original message > From: Jesse Molina > Date: 08/06/2014 06:54 (GMT+00:00) > To: tmux-us...@lists.sf.net > Subject: Is tmux pipe-pane STILL broken??? > > > > Reference: > http://comments.gmane.org/gmane.comp.terminal-

Is tmux pipe-pane STILL broken???

2014-06-07 Thread Jesse Molina
Reference: http://comments.gmane.org/gmane.comp.terminal-emulators.tmux.user/2059 I figured, surely two years later, this problem has been fixed. Nope. Still broke, doesn't work: tmux pipe-pane -o -t myname:0.0 "cat >> ./tmux.log" Is there any chance of me shaming someone into fixing this?

Re: Need tmux to inherit and pass on environment to a subshell

2014-06-03 Thread Jesse Molina
Marriott wrote: > Create the session, set the options, create a new window, kill window > 0 then move the new window to 0 (or movew -k or movew -r). > > > Original message > From: Jesse Molina > Date: 02/06/2014 03:23 (GMT+00:00) > To: tmux-users@lists.sour

Re: Need tmux to inherit and pass on environment to a subshell

2014-06-02 Thread Jesse Molina
'\n' ' ') bash" And ugly as it is, it works for me. I don't like it though. I'd much rather have a tmux option like this: tmux new-session -setenv "$EXPORT_VARS" "bash" On 6/1/14, 2:43, Balazs Kezes wrote: > On 2014-05-31 20:59 -0700,

Re: Need tmux to inherit and pass on environment to a subshell

2014-06-01 Thread Jesse Molina
e program I am running to not take it's configuration from the environment. Please disagree with me if someone sees a better solution here that I don't. On 6/1/14, 17:41, Jesse Molina wrote: > Thanks for the suggestion. This was pretty close to what I was already > doing as a hack

Re: Need tmux to inherit and pass on environment to a subshell

2014-06-01 Thread Jesse Molina
I have to use it against the global settings *before* I create the new session, since I can't issue commands against a session that doesn't yet exist and I can't issue these options to the new session before the command is executed. On 6/1/14, 2:43, Balazs Kezes wrote: > On

Need tmux to inherit and pass on environment to a subshell

2014-05-31 Thread Jesse Molina
I have a problem. I have a bash script which calls tmux to create new sessions, in which it runs another application or script. This first bash script has a number of environmental variables which I need to exist in the new-session env to get passed on to the application/script in which the n

Re: logging everything

2012-09-11 Thread Jesse Molina
t security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > ___ > tmux-users mailing list > tmux-users@lists.sourceforge.net

Re: Unable to renice processes started with tmux with pam_limits/limits.conf

2012-08-21 Thread Jesse Molina
Oh heck. My bad. I totally forgot that the tmux server is persistent. That was definitely it. All fixed now. Thank you for your help! Nicholas Marriott wrote: > Did you start tmux before you changed limits.conf? > > > On Tue, Aug 21, 2012 at 09:23:37AM -0700, Jesse Molina wr

Unable to renice processes started with tmux with pam_limits/limits.conf

2012-08-21 Thread Jesse Molina
ot; I am using sudo here, but I don't think that is a factor since I can duplicate while not using sudo. -- # Jesse Molina # Mail = je...@opendreams.net # Cell = 1-602-323-7608 -- Live Security Virtual Conference

Re: Understanding terminals?

2011-11-09 Thread Jesse Molina
v2dev1 > ___ > tmux-users mailing list > tmux-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/tmux-users -- # Jesse Molina # Mail = je...@opendreams.net # Page = page-je...@opendreams.net # Cell = 1.602.323.7608

Re: Log entire session with pipe-pane? Examples please.

2011-10-10 Thread Jesse Molina
s been included in any tmux releases or source control. > > Jason > > On Sun, Oct 9, 2011 at 12:30 PM, Jesse Molina wrote: >> ant to tee the session to a log file. >> >> I read that you can do this with pipe-pane, but I am apparently doing >> something w

Log entire session with pipe-pane? Examples please.

2011-10-09 Thread Jesse Molina
hen I add a bind-key configuration item, but it won't work at all as a regular command. Example; tmux pipe-pane -o -t test1 'cat >> tmux.log' I must be misunderstanding the usage. Can some of you please provide some basic examples of logging with pipe-pane for an entire sess

Re: tmux has-session -t MYSESSION 2> /dev/null

2011-06-28 Thread Jesse Molina
t; > > On Mon, Jun 27, 2011 at 07:00:30PM -0700, Jesse Molina wrote: >> >> Sorry. I was working late and was tired. =( >> >> Here's a summary; >> >> Redirecting stdout or stderr from tmux causes indefinite terminal >> hang. I had to kill the

Re: tmux has-session -t MYSESSION 2> /dev/null

2011-06-27 Thread Jesse Molina
1. > > > > On Mon, Jun 27, 2011 at 08:15:38AM -0700, Jesse Molina wrote: >> >> This isn't fun. >> >> tmux has-session -t MYSESSION 2> /dev/null >> >> I need to omit stderr messages and just get the exit status from &g

Re: tmux has-session -t MYSESSION 2> /dev/null

2011-06-27 Thread Jesse Molina
Looks like bug ID: 3199205 Jesse Molina wrote: > > This isn't fun. > > tmux has-session -t MYSESSION 2> /dev/null > > I need to omit stderr messages and just get the exit status from > has-session in an if/while statement. Seems like this is totally foobar. >

tmux has-session -t MYSESSION 2> /dev/null

2011-06-27 Thread Jesse Molina
This isn't fun. tmux has-session -t MYSESSION 2> /dev/null I need to omit stderr messages and just get the exit status from has-session in an if/while statement. Seems like this is totally foobar. -- # Jesse Molina # Mail = je...@opendreams.net # Page = page-je...@opendreams.ne

Re: Running application in tmux stops when paging up/down

2011-06-26 Thread Jesse Molina
;jumptype = WINDOW_COPY_OFF; > data->jumpchar = '\0'; > > @@ -232,9 +229,6 @@ void > window_copy_free(struct window_pane *wp) > { > struct window_copy_mode_data*data = wp->modedata; > - > - if (wp->fd != -1) > -

Running application in tmux stops when paging up/down

2011-06-26 Thread Jesse Molina
again. What advice do wise tmux users have for me? -- # Jesse Molina # Mail = je...@opendreams.net # Page = page-je...@opendreams.net # Cell = 1.602.323.7608 # Web = http://www.opendreams.net/jesse/ -- All of the data