Nelgin wrote:
> Now, say I want to stuff a command..
>
> screen -S machine1 -X stuff "who^J"
>
> This works. However if I put it in for a for look
>
> for i in `cat serverlist`
> do
> screen -S $i -X stuff "who^J"
> done
The most obvious explanation is that your for-loop isn't doing what you
th
I am new to screen, and am having this same issue with multiuser mode on
AIX. I saw Bug #15003 was opened for this problem, but was closed for lack
of info. I'm a sysadmin, not a developer, but I'd be glad to provide more
info for this problem. What info would be most useful?
On Jun 5, 2009, at
I'm having a problem that I hope someone can assist with.
I am running a script to start a number of screen sessions
for i in `cat serverlist
do
screen -d -m -S $i ssh $i
done
We have the systems setup so we can ssh without a passkey, so I get a number
of screens.
Now, say I want to stuff a co