// Base class declaration
class CEmployee
{
public:
CEmployee(char* f, char* l, int salary);
CEmployee(int s);
~CEmployee(void);
int getSalary();
int age;
protected:
char* fname;
char* lname;
int salary;
};
// Derived...
I am trying to figure out how Expect's interact command works with multiple processes. I have 2 simple scripts below. The objective is to feed output by spawned process id2 to spawned process id1.
#!/usr/bin/expect --
log_user 1
# clear screen
send_user [exec tput reset]
# it appears...
Hello,
I am learning Expect and having difficulty with handling multiple processes simultaneously. I spawn 2 processes. In pseudo code below, Process2 ends first and sends an EOF to expect block and expect returns. However, Process 1 is still running and I would like expect to process output...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.