Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ExpectTheUnexpected

    Inheritance and termination housekeeping

    // 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...
  2. ExpectTheUnexpected

    Expect multi-proc interaction

    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...
  3. ExpectTheUnexpected

    Expect - handling multiple processes simultaneously

    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...

Part and Inventory Search

Back
Top