Re: Execute newgrp system command

2005-11-21 Thread Suvajit Sengupta
Hi, Thanks for the suggestion. There are some tasks which are directly tied to the group-id. Owing to the requirement it may happen my perl script need to switch groups to achieve a specific task. So my plan is to change to a new group with new grp command after exporting the Environment/requir

Re: Execute newgrp system command

2005-11-21 Thread Jay Savage
On 11/21/05, Shawn Corey <[EMAIL PROTECTED]> wrote: > Suvajit Sengupta wrote: > > Hi, > > I want to login into a new group using 'newgrp' UNIX command.Every > > newgrp command invokes a new shell. > > But when I am trying to execute this system command from a perl script > > the script is terminat

Re: Execute newgrp system command

2005-11-21 Thread Shawn Corey
Suvajit Sengupta wrote: Hi, I want to login into a new group using 'newgrp' UNIX command.Every newgrp command invokes a new shell. But when I am trying to execute this system command from a perl script the script is terminating and returning the prompt of the new shell . Can anyone suggest on

Execute newgrp system command

2005-11-21 Thread Suvajit Sengupta
Hi, I want to login into a new group using 'newgrp' UNIX command.Every newgrp command invokes a new shell. But when I am trying to execute this system command from a perl script the script is terminating and returning the prompt of the new shell . Can anyone suggest on what can be done to chang