CodeToad Forums » Perl » to open 5 terminals from one and also execute different commands on each terminal
|
|
|
|
|
Hello,
I want to open 5 terminals from a parent terminal and place these terminals on the screen properly so that each terminal can be viewed properly at the same time.
Also, i want to execute differnet commands in each terminal.
Can you help me please?
Thanks,
Gunjan
|
|
|
|
#!/usr/bin/perl
system "start script1.pl";
system "start script2.pl";
system "start script3.pl";
system "start script4.pl";
system "start script5.pl";
#any help?
|
|
|
|
|
|
|
// |