Ngo Ba Hung wrote:
> Does it exist the command rexec (remote execute)
> under linux ?
If you're referring to the rexec() library function, it's defined in
netdb.h (libc-6) or sys/socket.h (libc-5):
/* Call `rexecd' at port RPORT on remote machine *AHOST to execute
CMD. The process runs at the remote machine using the ID of user
NAME whose cleartext password is PASSWD. In *FD2P the descriptor
to the socket for the connection is returned. When the function
returns *AHOST contains the official host name. */
extern int rexec __P ((char **__ahost, int __rport, __const char *__name,
__const char *__pass, __const char *__cmd,
int *__fd2p));
--
Glynn Clements <[EMAIL PROTECTED]>