Re: tmux as an educational facilitator

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: OpenBSD <misc@...>
Date: Thursday, November 5, 2009 - 10:32 am

I've seen this model used before. It's basically the best thing for teaching unix as far as I can tell - show don't tell and all that.

Now, you're bashing screen a lot in this post - ignoring the fact that screen has a "multiuser mode" which is pretty easy to activate, and does exactly the same thing. I find it comes up less that I want to attach multiple windows to a terminal.

Personally I use this script to GET AROUND that very feature:
NUM=`tmux list-sessions|grep -v \(attached\)|head -n 1|cut -b 1`
if [ -e "$NUM" ]; then
tmux attach-session -t $NUM
else
tmux
fi
(yes, I know, it fails if I have more than nine attached tmux sessions as my first nine).

However - tmux is GREAT for certain tasks, and likely better than screen. But never accuse gnu of not having enough features, they'll put it in.

Somebody claiming to be frantisek holop wrote:

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
tmux as an educational facilitator, frantisek holop, (Thu Nov 5, 9:15 am)
Re: tmux as an educational facilitator, Marc Espie, (Thu Nov 12, 5:33 am)
Re: tmux as an educational facilitator, frantisek holop, (Thu Nov 5, 7:21 pm)
Re: tmux as an educational facilitator, Marc Espie, (Thu Nov 12, 5:35 am)
Re: tmux as an educational facilitator, Daniel Bolgheroni, (Thu Nov 5, 3:32 pm)
Re: tmux as an educational facilitator, Sean Howard, (Thu Nov 5, 10:32 am)
Re: tmux as an educational facilitator, frantisek holop, (Thu Nov 5, 11:37 am)
Re: tmux as an educational facilitator, Sean Howard, (Thu Nov 5, 11:55 am)