> if (fork() != 0) > execlp("xterm", "xterm", "-e", "telnet", "<users-args>", 0); fork() can fail, this example will exec xterm -e telnet <users-args> in the parent process when it does. Jim